action discord_get_me { label: "Get current user" description: "Returns the Discord user associated with the OAuth token." provider: discord method: GET path: "/users/@me" scopes: ["identify"] input: @json { { "type": "object", "additionalProperties": false, "properties": {} } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "username": { "type": "string" }, "global_name": { "type": "string" }, "avatar": { "type": "string" }, "email": { "type": "string" } } } } }