Skip to main content
POST
/
profile
/
verify-email-change
Verify email change
curl --request POST \
  --url https://api.orafi.app/v1/profile/verify-email-change \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "token": "123456"
}
'
{
  "success": true,
  "message": "Email changed successfully",
  "data": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.orafi.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for merchant authentication required for most endpoints

Body

application/json
token
string
required

OTP token from email

Example:

"123456"

Response

Email changed successfully

success
boolean
Example:

true

message
string
Example:

"Email changed successfully"

data
unknown