action influxdata_get_labels_id { label: "Retrieve a label" provider: influxdata method: GET path: "/labels/{labelID}" encoding: json input: { type: "object" properties: { labelID: { type: "string" } } required: ["labelID"] additionalProperties: false } output: { type: "object" properties: { label: { 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 } } } } } }