action apacta_get_time_entries_time_entry_id { label: "View time entry" provider: apacta method: GET path: "/time_entries/{time_entry_id}" encoding: json input: { type: "object" properties: { time_entry_id: { type: "string" format: "uuid" } } required: ["time_entry_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } form_id: { type: "string" format: "uuid" } from_time: { type: "string" format: "dateTime" } id: { type: "string" format: "uuid" } is_all_day: { type: "boolean" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } project_id: { type: "string" format: "uuid" } sum: { type: "integer" format: "int32" description: "Amount of seconds" } time_entry_type_id: { type: "string" format: "uuid" } to_time: { type: "string" format: "dateTime" } user_id: { type: "string" format: "uuid" } } } success: { type: "boolean" } } } }