Update all user attributes

Replaces a user's attributes. This will replace any existing attributes for the user with the attributes in the payload. To leave existing attributes in place, use PATCH.

Request
path Parameters
user_id
required
string

Unique User identifier

Request Body schema: application/json
first_name
string
surname
string
Responses
200

OK

400

Bad Request

404

Not Found

put/v3/users/{user_id}/attributes
Request samples
application/json
{
  • "first_name": "Joe",
  • "surname": "Blow"
}