Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
I ve created shopify remix app which collects store information, owner details not the customer data so I didnt add any scopes for customer and order . but three mandatory webhooks needs to be subscribed for Customer data request, Customer data erasure, Shop data erasure but I didnt collect any consumer data what to do in this case ?
This is Amelia from PageFly - Landing Page Builder App
Shopify requires all public apps to subscribe to the mandatory GDPR compliance webhooks. This ensures that your app can handle any potential data requests in compliance with privacy laws. Here’s what you can do:
Implement the Mandatory Webhooks:
Handle the Webhook Requests:
app.post('/webhooks/customers/data_request', (req, res) => { // Process the data request res.status(200).send('Data request received'); }); app.post('/webhooks/customers/redact', (req, res) => { // Process the data erasure request res.status(200).send('Data erasure request received'); }); app.post('/webhooks/shop/redact', (req, res) => { // Process the shop data erasure request res.status(200).send('Shop data erasure request received'); });
Register the Webhooks:
Hope that my solution works for you.
Best regards,
Amelia | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
➜ Optimize your Shopify store with PageFly Page Builder (Free plan available)
➜ Weekly updated Shopify tutorials on YouTube
All features are available from Free plan. Live Chat Support is available 24/7.
Hey Community! It’s time to share some appreciation and celebrate what we have accomplis...
By JasonH Nov 14, 2024In today’s interview, we sat down with @BSS-TekLabs to discuss practical strategies for...
By JasonH Nov 13, 2024The year-end shopping spree is around the corner! Is your online store ready for the ...
By JasonH Nov 10, 2024