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