User

Update user

Update all attributes of a user

put/api/users/{id}

Path parameters

idinteger required

User ID

Request body

Example request

{
  "user": {
    "name": "Joe",
    "id": 123,
    "email": "joe@gmail.com"
  }
}

Response

Updated Successfully

Example response

{
  "data": {
    "name": "Joe",
    "id": 123,
    "email": "joe@gmail.com"
  }
}

Changes