action influxdata_post_orgs_idmembers { label: "Add a member to an organization" provider: influxdata method: POST path: "/orgs/{orgID}/members" encoding: json input: { type: "object" properties: { id: { type: "string" } name: { type: "string" } orgID: { type: "string" } } required: ["id", "orgID"] additionalProperties: false } output: { type: "object" } }