Skip to main content

Change Email

Verifies client's account using the verification code sent to the client's email

Path param

authorization : *bearer
REQUEST BODY SCHEMA: application/json


NameDescriptionRequiredType
newEmailThe new email of the user RequiredString
oldEmailThe current email of the userNot RequiredString

Response

CodeDescription
200success message if successfully verified
409Unauthorized

Request Sample

Content type
application/json

[
{
"oldEmail": "oldemail@example.com",
"newEmail": "newemail@example.com"
}
...
]