action loket_get_external_tenants_by_employer_id { label: "Get available external tenants (employer scope)" description: "__Activity name:__ GetExternalTenantsByEmployerId\n \n\nGet a list of external tenants that are available within the scope of this employer.\nAn external tenant may be registered for a Loket user, and may be used to login to Loket using Azure Active Directory. \n" provider: loket method: GET path: "/providers/employers/{employerId}/externaltenants" 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 } }