Create Tax Code
create_tax_codeAdds a tax code to a company's tax setup in Procore, creating a new record and returning its ID. Supply company_id and code to complete the operation.
Instructions
Creates a Tax Code for a given Company. Pass the record's fields as top-level arguments — they are nested under "tax_code" in the request payload for you. Creates the tax code 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: company_id, code. Procore API: Construction Financials > Tax. Endpoint: POST /rest/v1.0/tax_codes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | JSON request body field — the Tax Code | |
| rate1 | No | JSON request body field — rate to apply for first Tax Type | |
| archived | No | JSON request body field — set to true if this tax code has been archived | |
| origin_id | No | JSON request body field — the Third-party ID of the Tax Code | |
| company_id | Yes | Query string parameter — unique identifier for the company. | |
| description | No | JSON request body field — the Description of the Tax Code | |
| origin_data | No | JSON request body field — additional Third-party Metadata for the Tax Code. Note: This is a free-form text field. | |
| default_tax_code | No | JSON request body field — set to true if this tax code is default tax code |