Skip to main content
GET
/
users
/
me
Get current user's profile
curl --request GET \
  --url https://app.azalt.co/api/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "phone": "<string>",
  "email": "<string>",
  "locale": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

Successful response

name
string | null
required
phone
string | null
required
email
string
required
locale
string | null
required