Update Drawing
update_drawingUpdate a drawing's details in Procore by sending only the fields you want to change; omitted fields remain unchanged. Requires drawing area and drawing IDs.
Instructions
Update specified Drawing. 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" in the request payload for you. drawing_area_id, id must identify existing parent records — resolve them with the matching list tool first. Returns the modified drawing 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: drawing_area_id, id. Procore API (v1.1): Project Management > Drawings. Endpoint: PATCH /rest/v1.1/drawing_areas/{drawing_area_id}/drawings/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier of the Drawings resource | |
| title | No | JSON request body field — drawing title | |
| number | No | JSON request body field — drawing number | |
| obsolete | No | JSON request body field — obsolete status | |
| drawing_area_id | Yes | URL path parameter — iD of the drawing area | |
| drawing_discipline | No | JSON request body field — the drawing discipline for this Drawings operation | |
| ordered_revision_ids | No | JSON request body field — ordered array of the complete list of reviewed and published Drawing Revision IDs that belong to the drawing |