Get Project'S Assignment History Data
get_projects_assignment_history_dataFetch the complete assignment history for a Procore project, including employee names, dates, cost codes, and labels. Use this to review all resource assignments linked to a specific project.
Instructions
Fetches the assignment history for a specific Project, returning records of all assignments linked to it. Use this to fetch the full details of a specific Resource Planning records by its identifier. Returns a JSON object describing the requested Resource Planning records. Required parameters: company_id, project_id. Procore API: Resource Management > Resource Planning. Endpoint: GET /rest/v1.0/workforce-planning/v2/companies/{company_id}/projects/{project_id}/reports/assignment-history
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the company. This parameter accepts both formats: - **Recommended**: Procore company ID (integer) - Use this for new integrations - Legacy: LaborChart UUID format (uuid string... | |
| project_id | Yes | URL path parameter — unique identifier for the project | |
| employeeName | No | Query string parameter — determines whether the employee's name should be included in the response. If set to `true`, the response will include the person's first and last name. Default is `true`. | |
| employee_number | No | Query string parameter — filter results by the exact employee number of the Person. | |
| jobTitle | No | Query string parameter — whether to include the person's Job Title. | |
| assignmentStart | No | Query string parameter — whether to include the assignment start date. | |
| assignmentEnd | No | Query string parameter — whether to include the assignment end date. | |
| start_time | No | Query string parameter — will return the daily start time for each assignment. | |
| end_time | No | Query string parameter — will return the daily end time for each assignment. | |
| cost_code | No | Query string parameter — will return the name and UUID of the Cost Code for each assignment. | |
| labels | No | Query string parameter — will return the name and UUID of the Label for each assignment. | |
| duration | No | Query string parameter — will return a calculated duration for each listed assignment. | |
| page | No | Page number for paginated results (default: 1) | |
| per_page | No | Number of items per page (default: 100, max: 100) |