Gets Documents Attached To Bid Package
gets_documents_attached_to_bid_packageFetch all documents attached to a bid package, including drawings and PDM attachments. Supports pagination, sorting, and search to manage bid documentation efficiently.
Instructions
Returns list of all documents attached to Bid Package, with meta information about all drawings and PDM (Project Document Management) attachments. Supports optional pagination and sorting for PDM attachments via query parameters. Use this to read information about Bid Management records from Procore. Returns a paginated JSON array of Bid Management records. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: company_id, bid_package_id. Procore API: Preconstruction > Bid Management. Endpoint: GET /rest/v1.0/companies/{company_id}/planroom/bid_packages/{bid_package_id}/documents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| bid_package_id | Yes | URL path parameter — unique identifier of the bid package | |
| pdm_page | No | Query string parameter — page number for paginating PDM attachments | |
| pdm_per_page | No | Query string parameter — number of PDM attachments per page | |
| pdm_sort_by | No | Query string parameter — field to sort PDM attachments by | |
| pdm_sort_order | No | Query string parameter — sort order for PDM attachments | |
| pdm_search | No | Query string parameter — search term to filter PDM attachments by document_revision_id | |
| page | No | Page number for paginated results (default: 1) | |
| per_page | No | Number of items per page (default: 100, max: 100) |