Get Person'S Assignment History Data
get_persons_assignment_history_dataRetrieves the complete assignment history for a specific person, including project name, dates, and optional details like cost codes and labels.
Instructions
Fetches the assignment history for a specific Person, returning records of all assignments linked to them. 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, person_id. Procore API: Resource Management > Resource Planning. Endpoint: GET /rest/v1.0/workforce-planning/v2/companies/{company_id}/people/{person_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... | |
| person_id | Yes | URL path parameter — unique identifier for the person | |
| projectName | No | Query string parameter — whether to include the project name for each assignment. | |
| project_number | No | Query string parameter — filters items by their exact project number. The query performs an exact match. Example usage: `/v2/companies/{company_id}/...?project_number=BR-2024` | |
| 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) |