action loket_get_modules_by_employer_id { label: "List of modules enabled for the employer" description: "__Activity name :__ GetModulesByEmployerId\n\nGet the array of the modules enabled for the specified employer. A module enables a certain functionality for the given employer. These are typically called 'producten' in Loket.\n" provider: loket method: GET path: "/providers/employers/{employerId}/modules" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } employerId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "employerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }