Skip to main content
PUT
/
v1
/
admin
/
users
/
:id
/
email
Change User Email (staff)
curl --request PUT \
  --url https://api.oviond.com/v1/admin/users/:id/email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
email
string<email>
required

Response

Email changed

success
enum<boolean>
required
Available options:
true