Skip to content

Update the current user's profile details

PATCH
/v1/users/me
curl --request PATCH \
--url https://api.adversarial.com/api/v1/users/me \
--header 'Content-Type: application/json' \
--data '{ "email": "example", "first_name": "example", "icon": "example", "last_name": "example" }'
Media typeapplication/json
object
email
string | null
first_name
string | null
icon
string | null
last_name
string | null
Examplegenerated
{
"email": "example",
"first_name": "example",
"icon": "example",
"last_name": "example"
}

Update the current user’s profile details

Media typeapplication/json
object
status
required
string
Examplegenerated
{
"status": "example"
}