List Trades
list_tradesRetrieve a paginated list of all trades for a company. Filter by name, active status, or update date to find specific trades.
Instructions
Return a list of all Trades associated with a Company. Use this to enumerate Company Settings when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of Company Settings. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: company_id. Procore API: Company Admin > Company Settings. Endpoint: GET /rest/v1.0/companies/{company_id}/trades
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| filters__updated_at | No | Query string parameter — return item(s) last updated within the specified ISO 8601 datetime range. Formats: `YYYY-MM-DD`...`YYYY-MM-DD` - Date `YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset `YYY... | |
| filters__active | No | Query string parameter — limit results to available trades | |
| filters__query | No | Query string parameter — query trades by name |