Skip to main content
PUT
/
v1
/
users
/
me
/
profile
Update Profile
curl --request PUT \
  --url https://api.oviond.com/v1/users/me/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fullname": "Jane Smith",
  "language": "en",
  "theme": "dark"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
fullname
string
Minimum string length: 1
Example:

"Jane Smith"

language
string
Example:

"en"

theme
enum<string>
Available options:
light,
dark,
system
Example:

"dark"

Response

200 - application/json

Profile updated

success
enum<boolean>
required
Available options:
true