action id4i_get_organization_privileges { label: "List my privileges" description: "Listing all privileges of the current user/APIKey of the specified organization." provider: id4i method: GET path: "/api/v1/organizations/{organizationId}/privileges" encoding: json input: { type: "object" properties: { organizationId: { type: "string" } } required: ["organizationId"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }