action influxdata_get_dashboards_idowners { label: "List all dashboard owners" provider: influxdata method: GET path: "/dashboards/{dashboardID}/owners" encoding: json input: { type: "object" properties: { dashboardID: { type: "string" } } required: ["dashboardID"] additionalProperties: false } output: { type: "object" properties: { links: { type: "object" properties: { self: { type: "string" format: "uri" } } } users: { type: "array" items: { type: "object" } } } } }