List Country Bank Mappings
GET/affiliate-manager/:locationId/country-bank-mapping
List the bank fields each supported country requires, for building a bank payout method. This is shared reference data, identical for every location.
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location Id
Successful response
- application/json
- Schema
- Example (auto)
Schema
countryBankMappingsobject[]required
Supported countries and their bank fields
metaobjectrequired
{
"countryBankMappings": [
{
"_id": "6385d230f6d19db03eef6fb2",
"country": "Germany",
"fields": [
{
"key": "IBAN",
"name": "IBAN",
"type": "text",
"required": true,
"example": "DE89370400440532013000",
"validationRegexp": "^[A-Z]{2}[0-9A-Z]{13,32}$"
}
]
}
],
"meta": {
"count": 55
}
}