List Drawings
list_drawingsList all drawings for a specified drawing area. Use it to discover drawings or fetch an ID before accessing a specific drawing. Requires drawing_area_id.
Instructions
Returns a list of all Drawings for a specified drawing area. Use this to discover drawings or to look up the id of one before calling a tool that needs it. drawing_area_id must identify an existing parent record — resolve it with the matching list tool first. Returns a JSON array of drawings; page and per_page control pagination and the response reports how many pages remain. Read-only — it changes nothing in Procore. 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. Procore API (v1.1): Project Management > Drawings. Endpoint: GET /rest/v1.1/drawing_areas/{drawing_area_id}/drawings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| view | No | Query string parameter — the 'compact' view returns the minimal attributes of a drawing (id, number, title, obsolete, and discipline). The 'extended' view returns minimal attributes with the current_revision object, which ... | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| project_id | No | Query string parameter — unique identifier for the project. | |
| with_position | No | Query string parameter — returns a list of drawings conditionally ordered by position. By default, it will order by position. | |
| drawing_area_id | Yes | URL path parameter — iD of the drawing area | |
| filters__drawing_set_id | No | Query string parameter — returns a list of drawings that are linked to the provided drawing_set_id. Can optionally pass 'current_set' to return only drawings that are published. | |
| filters__drawing_discipline_id | No | Query string parameter — returns a list of drawings that are linked to the provided drawing_discipline_id |