Skip to main content

Update a user

PUT 

/users/:userId

Updates a user given a specified userId. This endpoint allows you to update a username or fullName and returns the updated user object.

Request

Path Parameters

    userId stringrequired

    The Id of the user you want to lookup. Returned from the Create User endpoint. Note: you can also use the Embedded user's username in this field.

Header Parameters

    Authorization stringrequired

    Default value: bearer YOUR_API_KEY

Body

    username string

    The unique identifier of the user

    fullName string

    The name of the user

Responses

200

Schema

    userId string
    fullName string
    username string
Loading...