Hi all, I want to write a little script to add a tender type to each of our merchants as this takes a good while to complete manually.
I've taken a look at the api documentation and I thought this may be possible by updating the merchant (POST to /v3/merchants/{mId}) with a payload like this:
{
"tenders":[
{
"visible":false,
"label":"Special Voucher",
"enabled":true
}
]
}
But this doesn't seem to be working. Am I going about this the right way? Is it definitely possible to add a new tender using the API?
Any help would be greatly appreciated.