action influxdata_get_dashboards_idcells_idview { label: "Retrieve the view for a cell" provider: influxdata method: GET path: "/dashboards/{dashboardID}/cells/{cellID}/view" encoding: json input: { type: "object" properties: { cellID: { type: "string" } dashboardID: { type: "string" } } required: ["cellID", "dashboardID"] additionalProperties: false } output: { required: ["name", "properties"] properties: { id: { type: "string" } links: { type: "object" properties: { self: { type: "string" } } } name: { type: "string" } properties: { type: "object" } } } }