Add Values To Custom Field
add_values_to_custom_fieldAppend new values to Procore custom fields of type 'select' or 'multi-select' by providing company ID, field ID, and the values list.
Instructions
Appends new values to a Custom Field with type select or multi-select. company_id defaults to the value set by procore_set_config when omitted, and field_id must identify an existing parent record — resolve it with the matching list tool first. Creates the value and returns it with its new id (HTTP 201); calling it again creates another record. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: company_id, field_id, values. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/custom-fields/{field_id}/values
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| values | Yes | JSON request body field — list of values to append to the field. | |
| field_id | Yes | URL path parameter — uUID of the Custom Field. | |
| company_id | Yes | URL path parameter — unique identifier for the company. This parameter accepts both formats: - **Recommended**: Procore company ID (integer) - Use this for new integrations - Legacy: LaborChart UUID format (uuid string... |