Update Drawing Revision
update_drawing_revisionUpdate a drawing revision in Procore by specifying project and revision IDs, sending only the fields to change while others retain current values. Receive the updated revision or an error status.
Instructions
Update specified Drawing Revision. Send only the fields you intend to change; omitted fields keep their current values. Pass the record's fields as top-level arguments — they are nested under "drawing_revision" in the request payload for you. project_id defaults to the value 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 drawing 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: project_id, id. Procore API: Project Management > Drawings. Endpoint: PATCH /rest/v1.0/projects/{project_id}/drawing_revisions/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the Drawing Revision | |
| floorplan | No | JSON request body field — revision floorplan status | |
| drawing_id | No | JSON request body field — unique identifier of the drawing | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| drawing_date | No | JSON request body field — the drawing date in YYYY-MM-DD format | |
| received_date | No | JSON request body field — the received date in YYYY-MM-DD format | |
| drawing_set_id | No | JSON request body field — unique identifier of the drawing set | |
| revision_number | No | JSON request body field — the revision number for this Drawings operation | |
| custom_field_%{custom_field_definition_id} | No | JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition. For a lov_entry data_type the value passed in should be the ID of one ... |