action influxdata_get_dashboards_idlabels { label: "List all labels for a dashboard" provider: influxdata method: GET path: "/dashboards/{dashboardID}/labels" encoding: json input: { type: "object" properties: { dashboardID: { type: "string" } } required: ["dashboardID"] 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 } } } } } }