List Equipment Timecard Entries (Project)
list_equipment_timecard_entries_projectRetrieve a paginated list of equipment timecard entries for a project within a date range. Use it to get field productivity records with optional filters.
Instructions
Returns a list of all equipment timecard entries for the given date range. If no date/date range is provided, it returns entries for the current date. 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, company_id. Procore API: Project Management > Field Productivity. Endpoint: GET /rest/v1.0/companies/{company_id}/projects/{project_id}/equipment_timecard_entries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| start_date | No | Query string parameter — the beginning of the date range for equipment timecard entries. (YYYY-MM-DD) Start date is inclusive. | |
| end_date | No | Query string parameter — the end of the date range for equipment 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__id | No | Query string parameter — return item(s) with the specified IDs | |
| 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 | |
| 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 |