action apacta_get_time_entry_intervals_time_entry_interval_id { label: "View time entry interval" provider: apacta method: GET path: "/time_entry_intervals/{time_entry_interval_id}" encoding: json input: { type: "object" properties: { time_entry_interval_id: { type: "string" format: "uuid" } } required: ["time_entry_interval_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" } description: { type: "string" } id: { type: "string" format: "uuid" } identifier: { type: "string" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } name: { type: "string" } } } success: { type: "boolean" } } } }