action influxdata_post_buckets_idowners { label: "Add an owner to a bucket" provider: influxdata method: POST path: "/buckets/{bucketID}/owners" encoding: json input: { type: "object" properties: { bucketID: { type: "string" } id: { type: "string" } name: { type: "string" } } required: ["bucketID", "id"] additionalProperties: false } output: { type: "object" } }