action influxdata_get_me { label: "Retrieve the currently authenticated user" provider: influxdata method: GET path: "/me" encoding: json 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"] } } } }