Hi CurrencyCloud Team,
Version: v5.7.0
When trying to execute a cancel transfer using Curerncy Cloud Python SDK it fails as it is calling GET method instead of POST.
|
return Transfer(self, **self.get('/v2/transfers/' + resource_id + "/cancel", query=kwargs)) |
Instead it should be:
return Transfer(self, **self.post('/v2/transfers/' + resource_id + "/cancel", kwargs))
Regards and thanks!
Hi CurrencyCloud Team,
Version: v5.7.0
When trying to execute a cancel transfer using Curerncy Cloud Python SDK it fails as it is calling GET method instead of POST.
currencycloud-python/src/currencycloud/clients/transfers.py
Line 33 in b2482b7
Instead it should be:
Regards and thanks!