List Checklist (Inspection) Schedules
list_checklist_inspection_schedulesRetrieve checklist inspection schedules for a project. Use to discover schedules or look up schedule IDs before calling tools that need them.
Instructions
Returns the Checklist Schedules from Checklists (Inspections) on the Project. Use this to discover checklist inspection schedules 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 checklist inspection schedules; 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: Project Management > Inspections. Endpoint: GET /rest/v1.0/projects/{project_id}/checklist/schedules
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — sort schedule(s) by the chosen param; check below for a list of options. The direction of sorting is ascending by default; for descending sort, insert the - symbol before the param. | |
| 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__ended | No | Query string parameter — return schedule(s) that are finished when true, returns unfinished schedule(s) otherwise | |
| filters__ends_at | No | Query string parameter — return schedule(s) with the specified Last Inspection Due Date. | |
| filters__frequency | No | Query string parameter — return schedule(s) with the specified Frequency Types | |
| 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__assignee_id | No | Query string parameter — return schedule(s) with the specified Assignee IDs | |
| filters__location_id | No | Query string parameter — return schedule(s) with the specified Location IDs | |
| filters__equipment_id | No | Query string parameter — return schedule(s) with the specified Equipment IDs | |
| filters__list_template_id | No | Query string parameter — return schedule(s) with the specified Inspection Template IDs | |
| filters__inspection_type_id | No | Query string parameter — return schedule(s) with the specified Checklist Type IDs | |
| filters__first_inspection_due_at | No | Query string parameter — return schedule(s) with the specified First Inspection Due Date |