action influxdata_get_authorizations { label: "List all authorizations" provider: influxdata method: GET path: "/authorizations" encoding: json input: { type: "object" properties: { org: { type: "string" } orgID: { type: "string" } user: { type: "string" } userID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { authorizations: { type: "array" items: { required: ["orgID", "permissions"] type: "object" } } links: { type: "object" required: ["self"] properties: { next: { type: "string" format: "uri" description: "URI of resource." } prev: { type: "object" additionalProperties: true } self: { type: "object" additionalProperties: true } } } } } }