Index Bid Forms
index_bid_formsRetrieves all bid forms for a bid package, enabling discovery and ID lookup for subsequent operations.
Instructions
Fetches a list of Bid Forms for a Bid Package. Use this to discover bid forms 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, and bid_package_id must identify an existing parent record — resolve it with the matching list tool first. Returns a JSON array of bid forms; 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, bid_package_id. Procore API: Preconstruction > Bid Management. Endpoint: GET /rest/v1.0/projects/{project_id}/bid_packages/{bid_package_id}/bid_forms
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter. | |
| view | No | Query string parameter — view that enables Use Previous Bidders functionality and provides project and bid package name | |
| search | No | Query string parameter — search for a bid form | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| bid_package_id | Yes | URL path parameter — unique identifier of the bid package | |
| excluded_bid_form_id | No | Query string parameter — bid Form Id to exclude |