action influxdata_get_orgs { label: "List all organizations" provider: influxdata method: GET path: "/orgs" encoding: json input: { type: "object" properties: { org: { type: "string" } orgID: { type: "string" } userID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { 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 } } } orgs: { type: "array" items: { required: ["name"] properties: { createdAt: { type: "string" format: "date-time" } description: { type: "string" } id: { type: "string" } links: { type: "object" properties: { buckets: { type: "object" additionalProperties: true } dashboards: { type: "object" additionalProperties: true } labels: { type: "object" additionalProperties: true } members: { type: "object" additionalProperties: true } owners: { type: "object" additionalProperties: true } secrets: { type: "object" additionalProperties: true } self: { type: "object" additionalProperties: true } tasks: { type: "object" additionalProperties: true } } } name: { type: "string" } status: { type: "string" description: "If inactive the organization is inactive." enum: ["active", "inactive"] } updatedAt: { type: "string" format: "date-time" } } } } } } }