action apacta_get_clocking_records_clocking_record_id { label: "Details of 1 clocking_record" provider: apacta method: GET path: "/clocking_records/{clocking_record_id}" encoding: json input: { type: "object" properties: { clocking_record_id: { type: "string" } } required: ["clocking_record_id"] additionalProperties: false } output: { type: "object" properties: { data: { 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" } } } success: { type: "boolean" } } } }