#Harpreet - ACH
1 messages · Page 1 of 1 (latest)
Hey! Bit of a broad question! Is there a specific use case you're trying to account for?
How to unlink bank account payment method from stripe
Payment method attached to customer, how we can remove that.
If you are willing to detach a PaymentMethod from a customer
You can use the detach API for that https://stripe.com/docs/api/payment_methods/detach
Is any other stripe api that can support customer id and payment method id parameter to unlink bank account
Why are you looking for another one ? could you please give more context
like we have many customer, we want to remove payment method of specific customer
Like card is deleted by this service
var service = new CardService();
var result = service.Delete(customerId, cardId);
You can fetch the list of payment_method of each customer https://stripe.com/docs/api/payment_methods/list#list_payment_methods-customer and whenever you find an ACH PaymentMethod, use the API I mentioned above in order to detach it
Okay thanks, that's good.