cURL
curl --request GET \ --url https://api.example.com/user/my/profile \ --header 'Authorization: Bearer <token>'
{ "user_id": 123, "updated_at": "2023-11-07T05:31:56Z", "full_name": "<string>", "job_title": "<string>", "department": "<string>", "phone_number": "<string>", "location": "<string>", "bio": "<string>", "avatar_url": "<string>", "avatar_initials": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response