action influxdata_get_buckets_idlabels { label: "List all labels for a bucket" provider: influxdata method: GET path: "/buckets/{bucketID}/labels" encoding: json input: { type: "object" properties: { bucketID: { type: "string" } } required: ["bucketID"] additionalProperties: false } output: { type: "object" properties: { labels: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } orgID: { type: "string" } properties: { type: "object" description: "Key/Value pairs associated with this label. Keys can be removed by sending an update with an empty value." } } } } links: { type: "object" required: ["self"] properties: { next: { type: "string" format: "uri" description: "URI of resource." } prev: { type: "object" additionalProperties: true } self: { type: "object" additionalProperties: true } } } } } }