Update Specific Users

Modify the fields of a specific User by its UUID.

Resource URI

PUT /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": "Billy",
  "last_name": "R",
  "email": "briker@email.com",
  "user_notes": "Mr. Riker cannot make up his mind about what he wants to be called in this API.",
}

Sample Response

JSON

{
  "id": "1",
  "first_name": "Bill",
  "last_name": "R",
  "email": "briker@email.com",
  "user_notes": "Mr. Riker cannot make up his mind about what he wants to be called in this API.",
}