English
cURL
curl --request GET \ --url https://app.azalt.co/api/v1/users/me \ --header 'Authorization: Bearer <token>'
{ "name": "<string>", "phone": "<string>", "email": "<string>", "locale": "<string>" }
Retrieve the authenticated user’s profile information.
Returns the user’s name, email, phone number, and locale preference. The email is always present as it’s required for authentication, while other fields may be null if not set.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response