Bank Account Require for Payout
Country Bank Regex
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/beneficiary/verification
{
"country":"CA"
}
Field | Required | Data Type | Description |
---|---|---|---|
country | false | String | Length: 2, Country ISO code i.e US. if country not set, all available regex will be returned |
Response
{
"status": true,
"content": {
"data": {
"BankName": true,
"RoutingNo": {
"avl": false
},
"AcctNo": {
"avl": true,
"range": {
"min": 5,
"max": 12
},
"regex": "^[0-9a-zA-Z]{5,12}$"
},
"IBAN": {
"avl": false,
"len": 20,
"regex": ""
},
"Branch": {
"avl": false,
"len": 5,
"regex": ""
},
"BIC": {
"avl": false,
"len": [
8,
11
],
"regex": ""
},
"SWIFT": {
"avl": false,
"len": [
8,
11
],
"regex": ""
},
"IFSC": {
"avl": false,
"len": 11,
"regex": ""
},
"BSB": {
"avl": false,
"len": 6,
"regex": ""
},
"RUBIK": {
"avl": false,
"len": 11,
"regex": ""
},
"Transit": {
"avl": true,
"len": [
5,
9
],
"regex": ""
}
}
}
}
Updated 11 months ago