Create Trade
create_tradeCreates a new trade record for a given company in Procore. Pass the company_id to add the trade and get back its unique ID.
Instructions
Creates a Trade associated to a Company. Pass the record's fields as top-level arguments — they are nested under "trade" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Creates the trade 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. Procore API: Company Admin > Company Settings. Endpoint: POST /rest/v1.0/companies/{company_id}/trades
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | JSON request body field — the name of the Trade | |
| active | No | JSON request body field — the availability status of the Trade | |
| company_id | Yes | URL path parameter — unique identifier for the company. |