# Get Actual Time Fetches specified actual time details by id. Endpoint: GET /v1/actual-time/{id} Version: v1 Security: ApiKey ## Path parameters: - `id` (string, required) ID of the resource ## Response 200 fields (application/json): - `id` (string) The id of the actual time entry - `project_id` (string) The id of the project that the actual time is being recorded for. - `project_offering_id` (string) The id of the project offering in which the actual time entry belongs to. - `project_offering_role_id` (string) The id of the project offering role that the actual time is recorded to. - `person_id` (string) The id of the Person to which the actual time entry belongs. If a person is specified who does not currently have a role on the project, a new ProjectOfferingRole will be created using the person's default organization role. The person will be assigned to it, and the ActualTime entry will be attached. - `description` (string,null) Notes associated with the actual time entry. - `recorded_date` (string) The date in which the actual time entry is recorded to, in the YYYY-MM-DD format. - `hours` (number) The number of hours associated with the actual time entry. - `billable` (boolean) Indicates whether the actual time entry was for billable work. ## Response 400 fields (application/json): - `type` (string) RFC reference for the error type - `title` (string) Human-readable summary of the error - `status` (integer) HTTP status code - `errors` (array) Detailed error messages for each validation failure - `trace_id` (string) Trace identifier for debugging