List Generic Tool Items
list_generic_tool_itemsRetrieve a paginated list of custom-configurable tool items for a given project and generic tool. Use filters to find specific items by ID, status, or date.
Instructions
Returns a list of all Generic Tool Items in the specified Project and Generic Tool. For more information on Generic Tool and Correspondence Tool endpoints, see Working with the Correspondence Tool. Use this to enumerate Custom - Configurable Tools when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of Custom - Configurable Tools. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: generic_tool_id, project_id. Procore API: Company Admin > Custom - Configurable Tools. Endpoint: GET /rest/v1.0/projects/{project_id}/generic_tools/{generic_tool_id}/generic_tool_items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| generic_tool_id | Yes | URL path parameter — unique identifier for the Generic Tool | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| view | No | Query string parameter — if supplied customize the response format | |
| 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__id | No | Query string parameter — return item(s) with the specified IDs. | |
| filters__login_information_id | No | Query string parameter — array of Login Information IDs. Returns item(s) with the specified Login Information ID. | |
| filters__status | No | Query string parameter — returns item(s) matching the specified status value. | |
| filters__overdue | No | Query string parameter — if true, returns item(s) that are overdue. | |
| filters__query | No | Query string parameter — return item(s) containing search query | |
| filters__recycle_bin | No | Query string parameter — if true, returns item(s) that have been deleted. | |
| filters__received_from_id | No | Query string parameter — filter results by received from id | |
| filters__created_by_id | No | Query string parameter — returns item(s) created by the specified User IDs. | |
| filters__created_at | No | Query string parameter — return item(s) created 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 `YYYY-MM-... | |
| 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__closed_at | No | Query string parameter — returns item(s) closed within the specified ISO 8601 datetime range. | |
| filters__issued_at | No | Query string parameter — returns item(s) issued within the specified ISO 8601 datetime range. | |
| filters__vendor_id | No | Query string parameter — return item(s) with the specified Vendor ID. | |
| sort | No | Query string parameter — field to sort by. If the field is passed with a - (EX: -updated_at) it is sorted in reverse order |