Skip to main content
GET
/
api
/
v1
/
users
/
me
/
Me
curl --request GET \
  --url https://api.main.apexscore.ai/api/v1/users/me/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "full_name": "<string>",
  "email": "jsmith@example.com",
  "first_name": "<string>",
  "last_name": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
id
string<uuid>
required
full_name
string
required
Maximum length: 250
email
string<email>
required
Maximum length: 255
first_name
string | null
Maximum length: 50
last_name
string | null
Maximum length: 100
I