List Drawings
list_drawingsLists all drawings in a drawing area with pagination and filtering. Retrieve drawing IDs and details for a specific project area.
Instructions
Returns a list of all Drawings for a specified drawing area. Use this to enumerate Drawings when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of Drawings. Use page and per_page to control pagination; the response includes pagination metadata. 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 |
|---|---|---|---|
| drawing_area_id | Yes | URL path parameter — iD of the drawing area | |
| project_id | No | Query string parameter — unique identifier for the project. | |
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| filters__drawing_discipline_id | No | Query string parameter — returns a list of drawings that are linked to the provided drawing_discipline_id | |
| 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. | |
| with_position | No | Query string parameter — returns a list of drawings conditionally ordered by position. By default, it will order by position. | |
| 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 ... |