action influxdata_get_buckets_idmembers { label: "List all users with member privileges for a bucket" provider: influxdata method: GET path: "/buckets/{bucketID}/members" 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" } } } } }