action apacta_get_time_entry_rule_groups { label: "List time entry rule groups" provider: apacta method: GET path: "/time_entry_rule_groups" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } 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" } id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } name: { type: "string" } salary_period_days: { type: "number" format: "float" } salary_period_from: { type: "string" format: "dateTime" } } } } 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" } } } }