Profile

Update display name

PATCH
/api/v1/profile/name/update
/api/v1/profile/name/update

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The new display name

displayName
Required
string

Minimum length: 1
curl -X PATCH "https://example.com/api/v1/profile/name/update" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "displayName": "string"
  }'

OK