You can delete a payment method using its token. All associated subscriptions will also be canceled immediately and the customer will forfeit any remaining days they've already paid for.
Python
result = gateway.payment_method.delete("the_token")
result.is_success
# True
If the payment method can't be found, it will throw a NotFoundError
exception.
Arguments
Additional Parameters
'revoke_all_grants'
bool
When True
, all grants of the payment method to other merchants will automatically be revoked. The default value is False
.