# Update Actual Time Updates an existing Actual Hours record, used to correct or adjust time entries for accuracy in utilization and variance tracking. Endpoint: PATCH /v1/actual-time/{id} Version: v1 Security: ApiKey ## Path parameters: - `id` (string, required) ID of the resource ## Request fields (application/json-patch+json): - `project_offering_id` (string,null) The id of the project offering in which the actual time entry belongs to. - `person_id` (string,null) 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,null) The date in which the actual time entry is recorded to, in the YYYY-MM-DD format. - `hours` (number,null) The number of hours associated with the actual time entry. - `billable` (boolean,null) 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 ## Response 200 fields