Create Company Vendor Business Register
create_company_vendor_business_registerCreate a new business register, such as an ABN or EIN, for a specified company vendor in Procore. Provide the vendor ID, company ID, type, and identifier to add the record.
Instructions
Create a new Business Register associated with a specified Vendor. Pass the record's fields as top-level arguments — they are nested under "business_register" in the request payload for you. id must identify an existing parent record — resolve it with the matching list tool first. Creates the company vendor business register and returns it with its new id (HTTP 201); calling it again creates another record. 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: id, company_id, type, identifier. Procore API: Core > Directory. Endpoint: POST /rest/v1.0/vendors/{id}/business_register
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the Company Vendor | |
| type | Yes | JSON request body field — entity Type | |
| company_id | Yes | Query string parameter — unique identifier for the company. | |
| identifier | Yes | JSON request body field — entity ID. This field ignores spaces and dashes. |