List Custom Field Lov Entries
list_custom_field_lov_entriesReturn paginated list of custom field LOV entries for a given company and custom field definition. Filter by ID, active status, or label to narrow results.
Instructions
Return a list of all Custom Field Lov Entries associated with the Current Company and the Custom Field Definition passed by path param. The filter filters[active] is ignored when filters[id] is present. Use this to enumerate Custom - Configurable Tools when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of Custom - Configurable Tools. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: company_id, custom_field_definition_id. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: GET /rest/v1.0/custom_field_definitions/{custom_field_definition_id}/custom_field_lov_entries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| custom_field_definition_id | Yes | URL path parameter — unique identifier for the Custom Field Definition. | |
| company_id | Yes | Query string parameter — unique identifier for the company. | |
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| filters__start_with | No | Query string parameter — return lov entries that label start with letters | |
| filters__active | No | Query string parameter — return lov entries that active status is (true or false) | |
| filters__label_with | No | Query string parameter — return lov entries that contains the label with the text | |
| filters__id | No | Query string parameter — return lov entries that are filtered on an array of ID's. Example: filters[id]=[1,2] |