public IHttpActionResult DeleteWebhook(string id, [FromUri] string token, [FromUri] string shopname)
        {
            var service  = new ShopifyService();
            var webhooks = service.DeleteEntity("webhooks", token, shopname, id);

            return(Ok(webhooks));
        }