Web API Docs Update user info

Navigate

Request

PATCH /api/user/

Request headers

Header Required value
Content-Type application/json

Request body example

{
  "email": "oliver@example.com",
  "display_name": "Oliver"
}

Response

Response example

{
  "id": 1,
  "display_name": "Oliver"
}

Response codes

Code Reason
200 The user updated was successfully.
400 A user with the email and/or display has already registered.
401 The request has not been signed with an access token. An access token is required to identify the acting user.