#chadmarquez09
1 messages · Page 1 of 1 (latest)
Unfortunately there is not a way to pause all of them at once. The API can make it easier to automate pausing each of them if you are comfortable with coding but otherwise it will need to be a one-by one thing unless PMP has some functionality for this.
What would the coding involve?
Likely something like listing all of your subscriptions https://stripe.com/docs/api/subscriptions/list
And then going through one by one and making a cancel call on each of them https://stripe.com/docs/api/subscriptions/cancel
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Or actually you said "Pause". If you do want to pause and potentially resume them, you can make an update call and pass in the pause behavior that you want. https://stripe.com/docs/api/subscriptions/update#update_subscription-pause_collection-behavior
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.