action loket_get_absence_contacts_history_by_absence_id { label: "Contact history for an absence" description: "__Activity name :__ GetAbsenceContactHistoryByAbsenceId\n\nGet the contacts history for a specific absence (verzuimmelding).\n" provider: loket method: GET path: "/providers/employers/employees/absences/{absenceId}/absencecontactHistory" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } absenceId: { type: "string" format: "uuid" } filter: { type: "string" } orderBy: { type: "string" } pageNumber: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } } required: ["Accept", "Authorization", "absenceId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }