Get Single Custom Field
get_single_custom_fieldRetrieves a specific custom field by its ID, returning its full field details. Use when you need complete information for a known custom field in Procore.
Instructions
Retrieves a single Custom Field by its ID. Use this when you already know which custom field you want and need its full field set. 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. Returns a single JSON object describing the custom field. Read-only — it changes nothing in Procore. 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. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: GET /rest/v1.0/workforce-planning/v2/companies/{company_id}/custom-fields/{field_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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... |