action influxdata_post_dashboards_idcells { label: "Create a dashboard cell" provider: influxdata method: POST path: "/dashboards/{dashboardID}/cells" encoding: json input: { type: "object" properties: { dashboardID: { type: "string" } h: { type: "integer" format: "int32" } name: { type: "string" } usingView: { type: "string" description: "Makes a copy of the provided view." } w: { type: "integer" format: "int32" } x: { type: "integer" format: "int32" } y: { type: "integer" format: "int32" } } required: ["dashboardID"] additionalProperties: false } output: { type: "object" properties: { h: { type: "integer" format: "int32" } id: { type: "string" } links: { type: "object" properties: { self: { type: "string" } view: { type: "string" } } } viewID: { type: "string" description: "The reference to a view from the views API." } w: { type: "integer" format: "int32" } x: { type: "integer" format: "int32" } y: { type: "integer" format: "int32" } } } }