action loket_get_authorizations_by_employer_id { label: "List of authorized activities with regard to the employer" description: "__Activity name :__ GetAuthorizationsByEmployerId\n\nGet the array of activities the user is authenticated for with regard to the specified employer\n" provider: loket method: GET path: "/providers/employers/{employerId}/authorizations" 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 } }