List Project Fields
list_project_fieldsGet all fields for a Procore project by specifying company and project IDs. Returns a read-only JSON payload with the complete field set.
Instructions
Returns the Fields for a Project. Use this when you already know which project field you want and need its full field set. company_id and project_id default to the values set by procore_set_config when omitted. Returns a single JSON object describing the project 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, project_id. Procore API (v2.0): Project Management > Document Management. Endpoint: GET /rest/v2.0/companies/{company_id}/projects/{project_id}/document_management/fields
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| locale | No | Query string parameter — language for the response to be translated into | |
| filters | No | Query string parameter — object with whitelisted Field ids as keys and their corresponding MetadataValue id, MetadataValue ids array, or primitive string value as values. Valid filterable fields are: active, can_affect_per... | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| company_id | Yes | URL path parameter — unique identifier for the Procore company | |
| project_id | Yes | URL path parameter — unique identifier for the Procore project |