action influxdata_get_users { label: "List all users" provider: influxdata method: GET path: "/users" encoding: json input: { type: "object" properties: { id: { type: "string" } name: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { links: { type: "object" properties: { self: { type: "string" format: "uri" } } } users: { type: "array" items: { required: ["name"] properties: { id: { type: "string" } links: { type: "object" properties: { self: { type: "string" format: "uri" } } } name: { type: "string" } oauthID: { type: "string" } status: { type: "string" description: "If inactive the user is inactive." enum: ["active", "inactive"] } } } } } } }