public async Task <IActionResult> CustomersRedact(ShopifyCustomerRedactPayload payload)
 {
     try
     {
         await this.CustomerRequestedDataDeletion(payload);
     }
     catch (Exception ex)
     {
         this.LogGenericError(ex);
     }
     return(Ok());
 }
 public virtual async Task CustomerRequestedDataDeletion(ShopifyCustomerRedactPayload payload)
 {
 }