action influxdata_post_labels { label: "Create a label" provider: influxdata method: POST path: "/labels" encoding: json input: { type: "object" required: ["name", "orgID"] properties: { 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." } } } 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 } } } } } }