Skip to main content
POST
/
api
/
Auth
/
verifyEmailCode
Verify your email address
curl --request POST \
  --url https://dev-api-partner.onecluster.co/api/Auth/verifyEmailCode \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "cto@techfin.ng",
  "code": "847291"
}
'
{
  "success": true,
  "responseCode": "00",
  "message": "Email verified. You may now upload your business documents.",
  "data": {}
}

Authorizations

Authorization
string
header
required

Headers

X-Correlation-ID
string<uuid>

Body

application/json
email
string<email>
required

The email address you registered with

Example:

"cto@techfin.ng"

code
string
required

The 6-digit code from your verification email

Example:

"847291"

Response

Email verified successfully

Standard response wrapper for all successful API calls

success
boolean
required

Always true for successful responses

Example:

true

responseCode
string
required

00 means success

Example:

"00"

message
string
required

Human-readable description of the result

Example:

"Request processed successfully"

data
object
required

The actual response data (varies by endpoint)