List Timecard Entries (Project)
list_timecard_entries_projectRetrieve timecard entries for a specified project, with optional date range and pagination parameters to filter and paginate results.
Instructions
Returns a list of all timecard entries for the current date. See Working with Daily Logs for information on filtering the response using the log_date, start_date, and end_date parameters. Use this to enumerate Field Productivity records when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of Field Productivity records. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: project_id. Procore API: Project Management > Field Productivity. Endpoint: GET /rest/v1.0/projects/{project_id}/timecard_entries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| log_date | No | Query string parameter — timecard entries at the specified date. (YYYY-MM-DD) | |
| start_date | No | Query string parameter — the beginning of the date range for timecard entries. (YYYY-MM-DD) Start date is inclusive. | |
| end_date | No | Query string parameter — the end of the date range for timecard entries. (YYYY-MM-DD) End date is inclusive. | |
| 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__daily_log_segment_id | No | Query string parameter — daily Log Segment ID filter | |
| filters__created_by_id | No | Query string parameter — returns item(s) created by the specified User IDs. |