Skip to main content
POST
/
api
/
payouts
/
account-verification
cURL
curl --request POST \
  --url https://test.digitaltermination.com/api/payouts/account-verification \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "service_type": "Wallet",
  "mobile_number": 233245519485,
  "receiving_country": "GHA",
  "mno": "MTN"
}
'
{
  "code": 200,
  "response": {
    "registration_status": 1,
    "registration_name": "GODWIN HOTTOR",
    "nameMatchRatio": null,
    "mno": "MTN"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
service_type
string
required

The account number to verify

Example:

"Wallet"

mobile_number
number
required

The mobile number

Example:

233245519485

receiving_country
string
required

The country code of the mobile number

Example:

"GHA"

mno
string
required

The mobile service provider

Example:

"MTN"

Response

Successful response for validating Mobile Money Wallet or Bank

code
number

Static response code indicating the status

Example:

200

response
object