如何取消django-merchant的定期付款?

时间:2012-03-22 21:51:55

标签: django payment recurring

当我创建这样的定期付款对象时:

response = merchant.recurring(amount,credit_card)

我该如何取消?有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

django-merchant的文档有些稀疏,但从the page on Gateways(即商家)看来,merchant.void(whatever_the_recurring_transaction_id_was)似乎是最有希望的 - 它被描述为废除以前授权的交易,这是与商家完成的.authorize(),也可以对经常性交易做同样的事情。