action influxdata_get_users_id { label: "Retrieve a user" provider: influxdata method: GET path: "/users/{userID}" encoding: json input: { type: "object" properties: { userID: { type: "string" } } required: ["userID"] additionalProperties: false } output: { 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"] } } } }