For discussing the development and integration of subscription-enabled shops using Shopify's Subscription APIs.
Is it possible to trigger a customer to add a payment method if the method has been revoked? There doesn't appear to be a way to do it via the Shopify Customer, nor does the method customerPaymentMethodSendUpdateEmail work unless you have an existing payment ID (which you wouldn't have if the payment method had been revoked).
Solved! Go to the solution
This is an accepted solution.
Hey there,
You can trigger an update on a revoked payment method. To retrieve the ID, you can use the `showRevoked: true` argument when querying payment methods
https://shopify.dev/api/admin-graphql/2022-01/objects/subscriptioncontract#field-subscriptioncontrac...
To learn more visit the Shopify Help Center or the Community Blog.
This is an accepted solution.
Hey there,
You can trigger an update on a revoked payment method. To retrieve the ID, you can use the `showRevoked: true` argument when querying payment methods
https://shopify.dev/api/admin-graphql/2022-01/objects/subscriptioncontract#field-subscriptioncontrac...
To learn more visit the Shopify Help Center or the Community Blog.
Thank you so much! That did the trick, I really appreciate your help!