# 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)
    The id of the project offering in which the actual time entry belongs 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)
    Notes associated with the actual time entry.

  - `recorded_date` (string)
    The date for which the actual time entry is recorded. ISO date formatting expected (yyyy-MM-dd)

  - `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

