Update Users

Modify User’s data field.

Resource URI

PATCH /users/{users_uuid}                                     

Input Parameters

@param first_name {string} The new first name of a User.
@param last_name {string} The new last name of a User.
@param email {string} The new Users email address.
@param user_notes {string} Any new notes associated with this User.

Sample Request URI

html

https://api.4over.com/users/0f01b433-441a-45e3-a689-f767d447975c 

Sample Request Body

JSON

{
  "first_name": "Bill",
  "user_notes": "William prefers to be called Bill"
}

Sample Response

JSON

{
  "id": "1",
  "first_name": "Bill",
  "last_name": "Riker",
  "email": "briker@email.com",
  "user_notes": "William prefers to be called Bill"
}