List Project Vendors
list_project_vendorsRetrieve a paginated list of vendors for a specified project. Use it to discover project vendors or find a vendor ID before making further API calls.
Instructions
Return a list of Vendors associated with a specified Project. Use this to discover project vendors or to look up the id of one before calling a tool that needs it. project_id defaults to the value set by procore_set_config when omitted. Returns a JSON array of project vendors; page and per_page control pagination and the response reports how many pages remain. Read-only — it changes nothing in Procore. 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. Procore API (v1.1): Core > Directory. Endpoint: GET /rest/v1.1/projects/{project_id}/vendors
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — return items with the specified sort. | |
| view | No | Query string parameter — specifies which view of the resource to return (which attributes should be present in the response). Users without read permissions to Directory are limited to ids_only, name, and minimal views. If... | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| filters__id__ | No | Query string parameter — returns vendors with the specified id(s) | |
| filters__search | No | Query string parameter — return vendors where the search string matches the vendor name, keywords, origin_code, or ABN/EIN number | |
| filters__trade_id__ | No | Query string parameter — returns vendors associated with the specified trade id(s) | |
| filters__parent_id__ | No | Query string parameter — returns vendors with the specified parent id(s) | |
| filters__standard_cost_code_id__ | No | Query string parameter — returns vendors associated with the specified standard cost code id(s) |