v1

latestOpenAPI 3.0.32026-08-064799140.5 KB
Users

Update a user

Updates a user by given userID. For example, this can be used to modify the user's status.

You can also manage users in the Developer Panel.

patch/users/{userID}

Path parameters

userIDstring required
Example:usr-4693224802260150919

Unique identifier of the user. Format: usr-<number>.

Request body

fullNamestring
namestring
status'pending' | 'active' | 'disabled' | 'deleted'

Example request

{
  "fullName": "Jane Doe"
}

Response

User has been updated.

userIDstring required
fullNamestring
status'pending' | 'active' | 'disabled' | 'deleted' required
explicitWebauthnIDstring
updatedstring required
updatedMsinteger required

Example response

{
  "userID": "usr-4693224802260150919",
  "fullName": "Jane Doe"
}