Create Contract Compliance Document
create_contract_compliance_documentCreate a contract compliance document in Procore by supplying company, project, and contract IDs; the API returns the new record with its ID.
Instructions
Creates a compliance document for a contract Procore Pay must be enabled to use this endpoint.. company_id and project_id default to the values set by procore_set_config when omitted, and contract_id must identify an existing parent record — resolve it with the matching list tool first. Creates the contract compliance document and returns it with its new id (HTTP 201); calling it again creates another record. 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. Procore API (v2.0): Construction Financials > Payments. Endpoint: POST /rest/v2.0/companies/{company_id}/projects/{project_id}/compliance/contracts/{contract_id}/documents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | JSON request body field — name of the compliance document | |
| notes | No | JSON request body field — notes for the compliance document | |
| status | No | JSON request body field — initial status of the compliance document. **Required** when the vendor submission feature flag is enabled — a 400 is returned if omitted. Ignored when the flag is disabled; status is then auto-det... | |
| 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 | |
| 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 set this field. |