action influxdata_get_orgs_id { label: "Retrieve an organization" provider: influxdata method: GET path: "/orgs/{orgID}" encoding: json input: { type: "object" properties: { orgID: { type: "string" } } required: ["orgID"] additionalProperties: false } output: { required: ["name"] properties: { createdAt: { type: "string" format: "date-time" } description: { type: "string" } id: { type: "string" } links: { type: "object" properties: { buckets: { type: "string" format: "uri" description: "URI of resource." } 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" } } } }