Webhooks triggers but not firing the codes

Hi, I’m trying to test trigger the webhooks that is already in the pre-installed remix template, “APP_UNINSTALLED” works fine and triggers my console log, but when testing the “CUSTOMERS_DATA_REQUEST”, “CUSTOMERS_REDACT”, “SHOP_REDACT”, it sends a 200 response but not firing any console logs.

Any help? Thanks in advance.

You set your URLs correctly right?

Each one of these options should have a separate endpoint. For me, I have customersRedact.js in my routes folder with the following code:

export const action = async ({ request }) => {
    return new Response(null, { status: 200 });
  };

Then the URL for my customer data erasure endpoint is: https://URLTOMYAPP.com/customersRedact

Nice, I haven’t try it out yet but will deffinitely do. Thanks so much!

Awesome, this works! THanks again.