action loket_get_employment_templates_by_employer_id { label: "Employment templates" description: "__Activity name :__ GetEmploymentTemplatesByEmployerId\nGet the employment templates that are available at this employer's level. \n\nAn employment templates (werknemersjabloon) provides as predefined set of values for a new employment. This is mostly when creating a new employee or employment as this allows the user to apply the template's values and augment this with any specific values.\n" provider: loket method: GET path: "/providers/employers/{employerId}/employmenttemplates" 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 } }