action loket_get_authorizations_by_provider_id { label: "List of authorized activities with regard to the provider" description: "__Activity name :__ GetAuthorizationsByProviderId\n\n\n\n\nGet the array of activities the user is authenticated for with regard to the specified provider. This endpoint is only accessible for providerusers.\n" provider: loket method: GET path: "/providers/{providerId}/authorizations" 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 } }