cURL
curl --request PATCH \ --url https://api.example.com/api/auth/profiles/current \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "profile": { "name": "<string>", "avatar_url": "<string>" } } '
{ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "profile": { "name": "<string>", "avatar_url": "<string>" } }
Update the profile of the currently authenticated user
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Profile data (name, avatar_url, and any custom fields)
Show child attributes
Profile updated successfully
User ID
User profile data (can contain custom fields)