action influxdata_post_dashboards_idmembers { label: "Add a member to a dashboard" provider: influxdata method: POST path: "/dashboards/{dashboardID}/members" encoding: json input: { type: "object" properties: { dashboardID: { type: "string" } id: { type: "string" } name: { type: "string" } } required: ["dashboardID", "id"] additionalProperties: false } output: { type: "object" } }