Topics covering webhook creation & management, event handling, Pub/Sub, and Eventbridge, in Shopify apps.
Hello,
I am in the process of creating a shopify application however when registering webhooks for the request to delete data linked to a shop or customers I find myself with questions. I collect the sales viewed by the customer order and display it in a counter anonymously, so I collect no data on the customer nor his contact details or his basket only I count it so do I have to provide this webhook so who will oblige me to collect their data and then find and delete them.
Solved! Go to the solution
This is an accepted solution.
Hi @riscoss ,
You have to implement the GDPR webhook endpoints. It's mandatory. If you don't collect customer data then simply return 200 (HTTP_OK) without actually removing any data in an empty webhook function.
The approval process will check for this.
GMKnight.
This is an accepted solution.
Hi @riscoss ,
You have to implement the GDPR webhook endpoints. It's mandatory. If you don't collect customer data then simply return 200 (HTTP_OK) without actually removing any data in an empty webhook function.
The approval process will check for this.
GMKnight.
Thanks so much for reply ok i do it 🙂