action influxdata_post_orgs { label: "Create an organization" provider: influxdata method: POST path: "/orgs" encoding: json input: { type: "object" required: ["name"] properties: { description: { type: "string" } name: { type: "string" } } } 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" } } } }