action apacta_get_clocking_records { label: "Get a list of clocking records" provider: apacta method: GET path: "/clocking_records" encoding: json input: { type: "object" properties: { active: { type: "boolean" } } additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { checked_in: { type: "string" format: "dateTime" } checked_out: { type: "string" format: "dateTime" } checkin_latitude: { type: "string" } checkin_longitude: { type: "string" } checkout_latitude: { type: "string" } checkout_longitude: { type: "string" } 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" } project_id: { type: "string" format: "uuid" } user_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" } } } }