List Drawing Revisions
list_drawing_revisionsRetrieve drawing revisions for a Procore project to inspect revision details and get IDs needed for other tools. Read-only, returns a paginated list filtered by project.
Instructions
Returns a list of all Drawing Revisions in the specified Project. Use this to discover drawing revisions or to look up the id of one before calling a tool that needs it. project_id defaults to the value set by procore_set_config when omitted. Returns a JSON array of drawing revisions; 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: project_id. Procore API: Project Management > Drawings. Endpoint: GET /rest/v1.0/projects/{project_id}/drawing_revisions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Query string parameter — filter by Drawing Revision ID To request specific drawing revision ids add `id[]=42&id[]=43` to query | |
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — sort by field. Prefix the sort key with `-` for descending order (e.g. `-drawing_number`). Multiple comma-separated sort keys are supported and applied in order. In addition to the fixed keys below... | |
| view | No | Query string parameter — defines the type of view returned. Must be one of 'only_pdf_urls', 'only_ids', 'only_ids_post_review', 'web_index', 'web_show', 'extended_coordinates', 'extended_files', 'extended_dpi' or 'android'. | |
| query | No | Query string parameter — filter by custom query | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| drawing_id | No | Query string parameter — unique identifier of the drawing | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| is_reviewed | No | Query string parameter — filter by `reviewed` status | |
| filters__ids | No | Query string parameter — filter by Drawing Revisions ID To request specific drawing revision ids add `filters[ids]=[1,2,3]` to filters | |
| with_obsolete | No | Query string parameter — include obsolete drawing revisions. Obsolete drawing revisions are filtered by default. | |
| drawing_set_id | No | Query string parameter — filter by Drawing Set. To retreive revisions from current set add `drawing_set_id=current_set` to query | |
| drawing_area_id | No | Query string parameter — filter by Drawing Area | |
| filters__deleted | No | Query string parameter — include deleted drawing revisions. Deleted drawing revisions are filtered by default. | |
| filters__updated_at | No | Query string parameter — return item(s) updated within the specified ISO 8601 datetime range. Formats: `YYYY-MM-DD`...`YYYY-MM-DD` - Date `YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset `YYYY-MM-... | |
| drawing_discipline_id | No | Query string parameter — filter by Drawing Discipline |