Update Specification Section Revision
update_specification_section_revisionEdit a specification section revision in Procore. Send only the fields to change; omitted fields keep their current values. Returns the updated revision on success.
Instructions
Updates a specification section revision. The request body must include specification_section and specification_section_revision objects (see schema). HTTP methods: Both PUT and PATCH are supported with the same request body. Success: Returns 200 OK with the updated revision. Validation errors: Returns 422 Unprocessable Entity when attribute validation fails (for example duplicate number and description, invalid division or specification set, or invalid revision). The response uses error.code UNPROCESSABLE_ENTITY, a summary error.message, and error.details with reason_code VALIDATION_ERROR and a failures object whose keys are API field names and whose values are arrays of validation message strings. Send only the fields you intend to change; omitted fields keep their current values. company_id and project_id default to the values set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified specification section revision on success. 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, id. Procore API (v2.1): Project Management > Specifications. Endpoint: PUT /rest/v2.1/companies/{company_id}/projects/{project_id}/specification_section_revisions/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier for the specification section revision. | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| specification_section | No | JSON request body field — the description of the specification section | |
| specification_section_revision | No | JSON request body field — specification_section_revision |