Get Single Time Off Record
get_single_time_off_recordRetrieve a specific time off record by ID to view its full details, using company, person, and time off IDs. Read-only operation.
Instructions
Retrieves a specific Time Off record by its ID. Use this when you already know which time off record you want and need its full field set. company_id defaults to the value set by procore_set_config when omitted, and person_id, time_off_id must identify existing parent records — resolve them with the matching list tool first. Returns a single JSON object describing the time off record. Read-only — it changes nothing in Procore. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: company_id, person_id, time_off_id. Procore API: Resource Management > Resource Planning. Endpoint: GET /rest/v1.0/workforce-planning/v2/companies/{company_id}/people/{person_id}/time-off/{time_off_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| person_id | Yes | URL path parameter — unique identifier for the person | |
| 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... | |
| time_off_id | Yes | URL path parameter — the UUID of the Time Off record. |