action loket_get_absence_by_absence_id { label: "Details of an Absence" description: "__Activity name :__ GetAbsenceByAbsenceId\n\nGet the details of an Absence \n" provider: loket method: GET path: "/providers/employers/employees/absences/{absenceId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } absenceId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "absenceId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }