Get Total Workers And Man Hours
get_total_workers_and_man_hoursGet total workers and man hours for a project between specified dates. Provide start and end dates to retrieve aggregated daily totals from the manpower log.
Instructions
Returns total workers and man hours between a start date and end date. To get a single day, supply the same date for start and end. Use this to fetch the full details of a specific Daily Log records by its identifier. Returns a paginated JSON array of Daily Log records. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: project_id. Procore API: Project Management > Daily Log. Endpoint: GET /rest/v1.0/projects/{project_id}/manpower_logs/daily_totals
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| start_date | No | Query string parameter — start date of specific logs desired in YYYY-MM-DD format (use together with end_date) | |
| end_date | No | Query string parameter — end date of specific logs desired in YYYY-MM-DD format (use together with start_date) | |
| filters__created_by_id | No | Query string parameter — returns item(s) created by the specified User IDs. | |
| page | No | Page number for paginated results (default: 1) | |
| per_page | No | Number of items per page (default: 100, max: 100) |