Skip to content

Update Account

PUT
/v1/users/self
curl --request PUT \
--url https://example.com/api/v1/users/self \
--header 'Authorization: <Authorization>' \
--header 'Content-Type: application/json' \
--data '{ "email": "example", "name": "example" }'

User Data

Media type application/json
object
email
string
name
string
Example generated
{
"email": "example",
"name": "example"
}

OK

Media type application/json
object
item
item
object
email
string
name
string
Example generated
{
"item": {
"email": "example",
"name": "example"
}
}