action loket_get_external_tenants_by_provider_id { label: "Get available external tenants (provider scope)" description: "__Activity name:__ GetExternalTenantsByProviderId\n \n\nGet a list of external tenants that are available within the scope of this provider.\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/{providerId}/externaltenants" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } providerId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "providerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }