action influxdata_get_buckets_idowners { label: "List all owners of a bucket" provider: influxdata method: GET path: "/buckets/{bucketID}/owners" encoding: json input: { type: "object" properties: { bucketID: { type: "string" } } required: ["bucketID"] additionalProperties: false } output: { type: "object" properties: { links: { type: "object" properties: { self: { type: "string" format: "uri" } } } users: { type: "array" items: { type: "object" } } } } }