Calculate Number Of Inspections To Create Based On Schedule
calculate_number_of_inspections_to_create_based_on_scheduleCalculates the total number of inspections to create based on schedule parameters such as project, date range, and frequency. Returns a paginated JSON array with count.
Instructions
Calculates the total number of Inspections to create based on Schedule parameters. Use this to read information about Inspections from Procore. Returns a paginated JSON array of Inspections. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: project_id, starts_at, ends_at, frequency. Procore API: Project Management > Inspections. Endpoint: GET /rest/v1.0/projects/{project_id}/checklist/schedules/calculate_total_inspections_count
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| starts_at | Yes | JSON request body field — schedule start date | |
| ends_at | Yes | JSON request body field — schedule end date | |
| frequency | Yes | JSON request body field — schedule frequency type name | |
| page | No | Page number for paginated results (default: 1) | |
| per_page | No | Number of items per page (default: 100, max: 100) |