Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
Tyler King edited this page Jun 3, 2018 · 8 revisions

As per Shopify guidelines your app (in some cases) should implement webhooks for GDPR.

This package is remaining agnostic in this issue, but follow this guide to implement an easy solution.

Webhook Creation (shop/redact)

php artisan shopify-app:make:webhook ShopRedactJob shop/redact

This will create a webhook job: App/Jobs/ShopRedactJob. You're now free to modify the webhook job and use it to delete information about the shop.

Webhook Creation (customers/redact)

php artisan shopify-app:make:webhook CustomersRedactJob customers/redact

This will create a webhook job: App/Jobs/CustomersRedactJob. You're now free to modify the webhook job and use it to delete information about customers.

Activation

  1. Visit your partner dashboard and select your app
  2. Click the App Setup link from the top toolbar
  3. Scroll down to Mandatory Webhooks
  4. Enter https://(your-domain).com/webhook/shop-redact and https://(your-domain).com/webhook/customers-redact

Welcome to the wiki!

Please see the homepage for a list of relevant pages.

Clone this wiki locally