action loket_get_application_authorizations_by_application_id { label: "Authorizations for the application" description: "__Activity name :__ GetApplicationAuthorizationsByApplicationId\n\nGet the authorizations of the application.\nWe expose which activities are accessable by the application and which \"rechten\" and \"producten\" are required for the user/employer to enable those activities.\n" provider: loket method: GET path: "/applications/{applicationId}/authorizations" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } applicationId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "applicationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }