Skip to main content
POST
/
gateway
/
account-number-validation
Validate Mobile Money Wallet
curl --request POST \
  --url https://api.stag.songhaiexchange.io/gateway/account-number-validation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mobileMoneyWalletCountry": "GHA",
  "mobileMoneyWalletNumber": "<string>",
  "mobileOperatorCode": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "<string>",
  "errorCode": 123,
  "data": {
    "mobileMoneyWalletCountry": "<string>",
    "mobileMoneyWalletName": "<string>",
    "mobileMoneyWalletNumber": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
mobileMoneyWalletCountry
string
required
Example:

"GHA"

mobileMoneyWalletNumber
string
required
mobileOperatorCode
string
required

Mobile operator code (e.g., MTN, VOD, AIR)

Response

200 - application/json

Mobile money wallet validated successfully

status
enum<string>
Available options:
SUCCESS,
ERROR
message
string
errorCode
integer
data
object