Skip to main content
POST
/
gateway
/
v2
/
account-number-validation
Account Validation
curl --request POST \
  --url https://api.stag.songhaiexchange.io/gateway/v2/account-number-validation \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountNumber": "<string>",
  "accountNumberCountry": "<string>",
  "bankCode": 123,
  "expectedCurrencyCode": "<string>",
  "transactionType": "<string>"
}
'
{
  "status": "<string>",
  "message": "<string>",
  "data": {
    "accountNumber": "<string>",
    "accountName": "<string>",
    "accountCurrency": "<string>"
  }
}

Headers

Authorization
string
required

Bearer token

Body

application/json
accountNumber
string
accountNumberCountry
string
bankCode
integer
expectedCurrencyCode
string
transactionType
string

Response

200 - application/json

Account Validated

status
string
message
string
data
object