Topics covering webhook creation & management, event handling, Pub/Sub, and Eventbridge, in Shopify apps.
According to the document "Implement the AppSubscription resource" ( https://shopify.dev/apps/billing/subscriptions ), the merchant is redirected to "returnUrl" after accepting the charge.
When creating an app subscription with recurring billing, what webhook fires when the charge is accepted?
SUBSCRIPTION_BILLING_ATTEMPTS_SUCCESS ?
If so, where can I can find out what's in the payload sent by this webhook?
Thanks.
Solved! Go to the solution
This is an accepted solution.
I don't believe there is a webhook, after acceptance Shopify returns to a URL that you define when you create the charge with a GET, the request also includes the new chargeId (see return_url in https://shopify.dev/api/admin/rest/reference/billing/recurringapplicationcharge#create-2021-07)
This is an accepted solution.
I don't believe there is a webhook, after acceptance Shopify returns to a URL that you define when you create the charge with a GET, the request also includes the new chargeId (see return_url in https://shopify.dev/api/admin/rest/reference/billing/recurringapplicationcharge#create-2021-07)
Thanks @Bunty ,
I finally got back to this to finish it off. It's exactly as you said and I have it working now.
Thanks