Skip to main content
POST
/
profile
/
request-email-change
Request email change
curl --request POST \
  --url https://api.orafi.app/v1/profile/request-email-change \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "newemail@example.com"
}
'
{
  "success": true,
  "message": "Email change initialised - Check new email for OTP",
  "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
email
string<email>
required

New email address

Example:

"newemail@example.com"

Response

Email change requested successfully

success
boolean
Example:

true

message
string
Example:

"Email change initialised - Check new email for OTP"

data
unknown