action loket_get_available_applications_by_employer_id { label: "List of all the applications available to the employer" description: "__Activity name:__ GetAvailableApplicationsByEmployerId\n \n\nList of all the applications available to the employer.\n" provider: loket method: GET path: "/providers/employers/{employerId}/applications" 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 } }