Show Fieldset
show_fieldsetRetrieve detailed field definitions for a specific fieldset in a Procore project using company, project, and fieldset IDs.
Instructions
Returns a fieldset with detailed field definitions for a given project. All fields including project-level fields (location_id, latitude, longitude) are included. Use this when you already know which fieldset you want and need its full field set. company_id and project_id default to the values set by procore_set_config when omitted, and fieldset_id must identify an existing parent record — resolve it with the matching list tool first. Returns a single JSON object describing the fieldset. 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, fieldset_id. Procore API (v2.0): Core > Assets. Endpoint: GET /rest/v2.0/companies/{company_id}/projects/{project_id}/assets/fieldsets/{fieldset_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| fieldset_id | Yes | URL path parameter — unique identifier for the Fieldset | |
| Accept-Language | No | JSON request body field — locale for localized response messages (for example: en, fr-FR, pseudo) | |
| include_lov_entries | No | Query string parameter — whether to include list of values entries for LOV fields |