Improved
February 14th 2026
7 days ago by Ran Grushkowsky
Improved
Enhanced the GET endpoint /payout/country/list by extending the Country object to include available generic services per country.
-
The
Countryschema now includes a new required field:generic_options.generic_options(array of strings) — List of generic option services available in the country (e.g.,LOCAL_BANK_DEPOSIT). Empty if no generic payers are available.
-
Example responses have been updated to include
generic_optionsalongsidecode,name,three_letter_code, andiso_numeric.
200 Response (example)
[
{
"code": "MX",
"name": "Mexico",
"three_letter_code": "MEX",
"iso_numeric": 484,
"generic_options": ["LOCAL_BANK_DEPOSIT"]
}
]Backward compatibility
Existing clients that ignore unknown fields require no changes. Clients that need to display or filter by available generic services can now use generic_options directly.
