action loket_get_linked_users_by_employer_id_and_application_id { label: "List of all the users linking the applications and the employer" description: "__Activity name:__ GetLinkedUsersByEmployerIdAndApplicationId\n \n\nList of all users that are configred to have both access to the employer and have an connection with the application.\n" provider: loket method: GET path: "/providers/employers/{employerId}/applications/{applicationId}/users" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } applicationId: { type: "string" format: "uuid" } employerId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "applicationId", "employerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }