action influxdata_post_scrapers_idlabels { label: "Add a label to a scraper target" provider: influxdata method: POST path: "/scrapers/{scraperTargetID}/labels" encoding: json input: { type: "object" properties: { labelID: { type: "string" } scraperTargetID: { type: "string" } } required: ["scraperTargetID"] 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 } } } } } }