action influxdata_get_dashboards { label: "List all dashboards" provider: influxdata method: GET path: "/dashboards" encoding: json input: { type: "object" properties: { id: { type: "array" items: { type: "string" } } org: { type: "string" } orgID: { type: "string" } owner: { type: "string" } sortBy: { type: "string" enum: ["ID", "CreatedAt", "UpdatedAt"] } } additionalProperties: false } output: { type: "object" properties: { dashboards: { type: "array" items: { type: "object" } } 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 } } } } } }