action influxdata_post_orgs_idowners { label: "Add an owner to an organization" provider: influxdata method: POST path: "/orgs/{orgID}/owners" encoding: json input: { type: "object" properties: { id: { type: "string" } name: { type: "string" } orgID: { type: "string" } } required: ["id", "orgID"] additionalProperties: false } output: { type: "object" } }