Skip to main content
POST
/
accounts
/
request-email-address-change
Request email address change
curl --request POST \
  --url https://api.quiva.ai/accounts/request-email-address-change \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "SecureP@ssw0rd!",
  "new_email": "[email protected]"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
new_email
string<email>
required

New email address

password
string

Current password

token
string

MFA token (required if MFA is enabled)

Response

Email change request initiated successfully

message
string