Shopify payment update webhook not triggering
Im looking to capture customer payment updates and implement the saving of the new payment id to one of our other systems. Looking at the Shopify documentation, it says that its possible https://shopify.dev/docs/api/webhooks?reference=toml#list-of-topics-customer_payment_methods/create. However this particular webhook is not available in the trigger option so I tried to add it manually, but even then it doesn't get triggered.
Shopify
Webhooks
The list of all webhook topics you can subscribe to. You can use webhook subscriptions to receive notifications about particular events in a shop.
Caution:If your app is distributed through the Shopify App Store, it must be subscribed to Shopify's mandatory compliance topics. You can create mandato...
2 Replies
Hi there, could you explain a bit more what you mean by
this particular webhook is not available in the trigger option so I tried to add it manuallyThe
customer_payment_methods/create
webhook is a webhook trigger on the ShopifyCustomerPaymentMethod
model's create
action. You should also be able to manually add this webhook topic is a trigger to a custom action if you have the read_customer_payment_methods
scope on your shopify connection.Thanks Jenny. Was able to sort this out earlier.