action apacta_get_time_entry_types { label: "List time entries types" provider: apacta method: GET path: "/time_entry_types" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { company_id: { type: "string" format: "uuid" } 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" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } name: { type: "string" } time_entry_interval_id: { type: "string" format: "uuid" } time_entry_value_type_id: { type: "string" format: "uuid" } } } } pagination: { type: "object" properties: { count: { type: "integer" } current_page: { type: "string" } has_next_page: { type: "boolean" } has_prev_page: { type: "boolean" } limit: { type: "integer" } page_count: { type: "string" } } } success: { type: "boolean" } } } }