v1

latestOpenAPI 3.1.0MIT2026-08-0492100246.4 KB
users

Update attributes for the current authenticated user from the OAuth token

patch/user

Request body

namestring

The unique name for the user.

onboardedboolean

Whether the user has completed onboarding

Example request

{
  "name": "Sarah O'Connor"
}

Response

Response

created_atstring date-time
idstring uuid required

ID of the User

emailstring required
namestring

The unique name for the user.

onboardedboolean

Whether the user has completed onboarding

updated_atstring date-time
profile_image_urlstring

Profile image URL of user

Example response

{
  "created_at": "2017-07-14T16:53:42Z",
  "id": "12345678-1234-1234-1234-1234567890ab",
  "email": "user@example.com",
  "name": "Sarah O'Connor",
  "updated_at": "2017-07-14T16:53:42Z"
}