User

Update user

Update the current user.

put/user/me

Request body

namestring nullable

Name of the user.

emailstring nullable

Email address of the user.

Example request

{
  "name": "John Doe",
  "email": "john@example.com"
}

Response

Updated user information.

Example response

{
  "data": {
    "id": "usr_XXXXXXXXXXXXXXXXXXXXXXXXX",
    "name": "John Doe",
    "email": "john@example.com",
    "fingerprint": "183ded44-24d0-480e-9908-c022eff8d111",
    "stripeCustomerID": "cus_XXXXXXXXXXXXXXXXX"
  }
}

Changes