v1

latestOpenAPI 3.0.12026-07-268028223.9 KB
Users

Show current user

Retrieve the currently authenticated user information

get/v1/me

Response

current user retrieved

idstring required

The ID of the user

emailstring email required

Email address of the user

first_namestring nullable required

First name of the user

last_namestring nullable required

Last name of the user

Example response

{
  "id": "abc123xyz",
  "email": "user@example.com",
  "first_name": "John",
  "last_name": "Doe",
  "api_access": {
    "auth_type": "personal_access_token",
    "scope": "read_write"
  }
}