Reputation: 73
I need to know how to detect recurring payments in shopify, so that when a recurring payment happens, perform an action.
In what part of shopify can I detect it, in the code, database?
Thank you for you help.
Upvotes: 0
Views: 90
Reputation: 11427
There are no recurring payments or subscriptions in Shopify at this time. External Apps are used to fake that, so you'd be looking at how they work, and interacting with them to determine recurring payments.
If you mean recurring charges for Apps you make, there is an API endpoint you call that will tell you everything you want to know with a GET. As per the docs, see here:
https://help.shopify.com/en/api/reference/billing/recurringapplicationcharge
Upvotes: 1