action influxdata_get_variables { label: "List all variables" provider: influxdata method: GET path: "/variables" encoding: json input: { type: "object" properties: { org: { type: "string" } orgID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { variables: { type: "array" items: { type: "object" required: ["name", "orgID", "arguments"] properties: { arguments: { type: "object" } createdAt: { type: "string" format: "date-time" } description: { type: "string" } id: { type: "string" } 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" properties: { labels: { type: "string" format: "uri" } org: { type: "string" format: "uri" } self: { type: "string" format: "uri" } } } name: { type: "string" } orgID: { type: "string" } selected: { type: "array" items: { type: "string" } } updatedAt: { type: "string" format: "date-time" } } } } } } }