Account Verification (SWIFT, IBAN, ROUTING)
Verify Swift, IBAN and Routing Number
Get required bank information needed to add beneficiary
POST METHOD
Note
To display for all available countries, payload will not be required. For country, ISO code of 2 characters is required
{{baseUrl}}/api/v2/swift-iban-verify
{
"account":"AE16026000************2",
"mode":"IBAN"
}
Field | Required | Data Type | Description |
---|---|---|---|
account | true | String | Number to verify (SWIFT or IBAN or ROUTINE) |
mode | true | String | Which account to verify(SWIFT or IBAN or ROUTINE). All in upper case. |
Response
{
"status": true,
"content": {
"data": {
"accountName": "",
"accountNo": "AE16026000************2",
"bankCode": "026",
"bankName": "",
"state": "",
"address": "",
"zipcode": ""
}
}
}
Updated about 2 years ago