v1

latestOpenAPI 3.0.0http://www.apache.org/licenses/LICENSE-2.0.html2026-07-14543167.2 KB
users

Update a user's profile information

post/users

Request body

emailstring email required

The email of the user that will be updated. If no user with the provided email exists, will return a 404 response.

namestring

The user's full name

profilePicturestring

A Data URI scheme in the JPG, GIF, or PNG format. Ensure you use the proper content type (image/jpeg, image/png, image/gif) that matches the image data being provided

biostring

The user's bio

statusstring

The user's status

linkedinstring

A link to the user's LinkedIn profile

twitterstring

A link to the user's Twitter profile

instagramstring

A link to the user's Instagram profile

Example request

{
  "email": "dmoney@scrutefarms.com",
  "name": "Dwight Schrute",
  "profilePicture": "data:image/jpeg;base64,BASE64_ENCODED_JPEG_IMAGE_DATA",
  "bio": "I'm the best salesman at Dunder Mifflin",
  "status": "Trying to get promoted to Assistant Regional Manager",
  "linkedin": "https://www.linkedin.com/in/dwight-schrute/",
  "twitter": "https://twitter.com/dwight_schrute",
  "instagram": "https://www.instagram.com/dwightschrute/"
}

Response

Successful response