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"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.