Asana · Schema

UpdateTimeTrackingEntryRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
duration_minutes integer *Optional*. Time in minutes tracked by the entry
entered_on string *Optional*. The day that this entry is logged on. Defaults to today if no day specified
View JSON Schema on GitHub

JSON Schema

asana-updatetimetrackingentryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateTimeTrackingEntryRequest",
  "title": "UpdateTimeTrackingEntryRequest",
  "type": "object",
  "properties": {
    "duration_minutes": {
      "description": "*Optional*. Time in minutes tracked by the entry",
      "type": "integer",
      "example": 12
    },
    "entered_on": {
      "description": "*Optional*. The day that this entry is logged on. Defaults to today if no day specified",
      "type": "string",
      "format": "date",
      "example": "2023-03-19"
    }
  }
}