I am working on implementing MercadoPago (MP) with Wix Pay API. According to the MP documentation, by default, all cards can be used. But they offer a way to exclude some (reason: some charge exorbitant amounts of commission). Their node.js example:
var preference = {}
preference = {
// ...
"payment_methods": {
"excluded_payment_methods": [
{
"id": "master"
}
],
"excluded_payment_types": [
{
"id": "ticket"
}
],
"installments": 12
}
// ...
}
Is there any way I can do this too thru the API?