List BIM File Extractions
list_bim_file_extractionsRetrieve a paginated list of BIM File Extractions for a project. Filter by status, extraction format, or file IDs to locate specific records and view error details.
Instructions
Return a list of all BIM File Extractions A BIM File Extraction can fail for several reasons. When it does, the errors attribute contains a list of errors encountered while processing the model. The following table lists the possible error codes and types. #### Error Types | Code | Type | |------|------------------------| | 1 | Undefined | | 2 | NetworkErr | | 3 | ServerErr | | 4 | JsonParseErr | | 5 | TokenExp... Use this to enumerate BIM records when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of BIM records. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: project_id. Procore API: Preconstruction > BIM. Endpoint: GET /rest/v1.0/bim_file_extractions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | 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__id | No | Query string parameter — return item(s) with the specified IDs. | |
| filters__status | No | Query string parameter — filter item(s) with matching status | |
| filters__extraction_format | No | Query string parameter — filter item(s) with matching extraction format | |
| filters__bim_file_id | No | Query string parameter — return item(s) with the specified bim_file_id in bim_file_upload | |
| filters__bim_file_upload_id | No | Query string parameter — return item(s) with the specified bim_file_upload_id | |
| filters__file_version_id | No | Query string parameter — return item(s) with the specified file_version_id in bim_file_upload | |
| filters__document_upload_id | No | Query string parameter — return item(s) with the specified document_upload_id in bim_file_upload | |
| filters__document_revision_id | No | Query string parameter — return item(s) with the specified document_revision_id in bim_file_upload |