Create Custom Field
create_custom_fieldCreates a custom field for a company to store additional information on projects or people. Specify name, type, and optional settings like filtering or dropdown values.
Instructions
Creates a new Custom Field for a given company ID. Custom Fields are used to store additional information about Projects or People. Use this to create a new Custom - Configurable Tools in Procore. Creates a new Custom - Configurable Tools and returns the created object on success (HTTP 201). Required parameters: company_id, name, type. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/custom-fields
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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... | |
| name | Yes | JSON request body field — the name of the Custom Field that appears in the UI. | |
| type | Yes | JSON request body field — the type of Custom Field. Determines the kind of data it will store. The type cannot be changed once created. | |
| can_filter | No | JSON request body field — if true, allows this field to be used as a filter. | |
| integration_only | No | JSON request body field — if true, only integrations can update this field. | |
| on_projects | No | JSON request body field — if true, the field is available on Projects. | |
| on_people | No | JSON request body field — if true, the field is available on People. | |
| description | No | JSON request body field — a description to help Admin users understand the field’s purpose. | |
| values | No | JSON request body field — only applicable for `select` or `multi-select` fields. List of values that will be options in the field's dropdown. | |
| sort_by | No | JSON request body field — only applicable for `select` or `multi-select` fields. Controls sorting of dropdown values. `alpha` sorts alphabetically, while `listed` maintains the provided order. |