# ActualTime Actual Time represents the timesheet data capturing the work performed by employees and logged against assigned Project Offerings. Actual Time is used to compare planned vs. actual effort, drive utilization reporting, support variance analysis, and inform project health and forecasting across the platform. ## List Actual Time - [GET /v1/actual-time](https://developer.getparallax.com/api-documentation/swagger/actualtime/listactualtime.md): Gets a paginated list of actual time entries with optional filtering by date range, project offering, and person. When no start or end date filters are provided, returns entries from the last 7 days (7 days ago through today). ## Create Actual Time - [POST /v1/actual-time](https://developer.getparallax.com/api-documentation/swagger/actualtime/createactualtime.md): Creates a new record representing hours a person has logged to a project, typically synced from the Timesheet System for tracking actuals against planned work. Parallax only allows a person to have a single role on a project offering, which means that the role is inferred by project_offering_id. ## Delete Actual Time - [DELETE /v1/actual-time/{id}](https://developer.getparallax.com/api-documentation/swagger/actualtime/deleteactualtime.md): Removes a recorded entry of hours worked from the system, typically used for error correction or cleanup. ## Get Actual Time - [GET /v1/actual-time/{id}](https://developer.getparallax.com/api-documentation/swagger/actualtime/getactualtime.md): Fetches specified actual time details by id. ## Update Actual Time - [PATCH /v1/actual-time/{id}](https://developer.getparallax.com/api-documentation/swagger/actualtime/updateactualtime.md): Updates an existing Actual Hours record, used to correct or adjust time entries for accuracy in utilization and variance tracking.