Bulk Create Bid Forms
bulk_create_bid_formsCreate multiple bid forms in a single request by providing project, bid package, and bid forms. Processes all records at once; individual failures return error details.
Instructions
Creates multiple Bid Forms in one request. Prefer this over repeated single-record calls when handling many bid forms at once. 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. Processes every supplied record in one request and returns the resulting collection; individual entries can fail independently, so check each one. 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, bid_forms. Procore API (v1.1): Preconstruction > Bid Management. Endpoint: POST /rest/v1.1/projects/{project_id}/bid_packages/{bid_package_id}/bid_forms/bulk_create
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bid_forms | Yes | JSON request body field — the bid forms for this Bid Management operation | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| bid_package_id | Yes | URL path parameter — unique identifier of the bid package | |
| completion_mode | No | Query string parameter — whether to update what can be or nothing if one can not be updated. Defaults to "all_or_nothing" |