Update Contract Compliance Document
update_contract_compliance_documentUpdate contract compliance document details in Procore, such as status, dates, or notes, using existing document ID and contract ID.
Instructions
Updates a contract compliance document Procore Pay must be enabled to use this endpoint.. 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 contract_id, id must identify existing parent records — resolve them with the matching list tool first. Returns the modified contract compliance document 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, contract_id, id. Procore API (v2.0): Construction Financials > Payments. Endpoint: PATCH /rest/v2.0/companies/{company_id}/projects/{project_id}/compliance/contracts/{contract_id}/documents/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the compliance document | |
| name | No | JSON request body field — name of the compliance document | |
| notes | No | JSON request body field — notes for the compliance document. Only commitment admins can update this field. | |
| status | No | JSON request body field — status of the compliance document | |
| company_id | Yes | URL path parameter — unique identifier for the Procore company | |
| expires_at | No | JSON request body field — expiration date of the compliance document | |
| project_id | Yes | URL path parameter — unique identifier for the Procore project | |
| contract_id | Yes | URL path parameter — unique identifier of the contract | |
| effective_at | No | JSON request body field — effective date of the compliance document | |
| document_type | No | JSON request body field — document type of the compliance document | |
| reviewer_notes | No | JSON request body field — notes from the reviewer | |
| prostore_file_ids | No | JSON request body field — array of Procore file IDs | |
| allow_vendor_submission | No | JSON request body field — whether vendors are allowed to submit this compliance document | |
| send_expiration_notification | No | JSON request body field — whether an expiration notification should be sent before this compliance document expires. Only commitment admins can update this field. |