Delete a Webhook

Before you get started

You'll need to have your Access Token and Vendor ID or Product ID ready.

You'll also need an existing webhook. Don't know how to make one? Check out the Create or Update a Webhook page.

Delete a Webhook

Option 1: Delete a product-level webhook

  1. Send a DELETE request to https://api.tackle.io/v1/webhooks/product/{productid}, where {productid} is the ID of the Product with the webhook you wish to delete.
curl -L -X DELETE 'https://api.tackle.io/v1/webhooks/vendor' \
-H 'Authorization: Bearer your-jwt-here'
  1. If successful, you will receive a 200 OK response similar to the following:
{
    "data": {
        "deleted": true
    },
    "metadata": {
        "link": "https://api.tackle.io/v1/webhooks/product/A0BCD23E"
    }
}

Ready to see the code in action? Check out our Delete a Product-Level Webhook recipe!

Option 2: Delete a vendor-level webhook

  1. Send a DELETE request to https://api.tackle.io/v1/webhooks/vendor, which will remove the vendor-level webhook.
curl -L -X DELETE 'https://api.tackle.io/v1/webhooks/vendor' \
-H 'Authorization: Bearer your-jwt-here'
  1. If successful, you will receive a 200 OK response similar to the following:
{
    "data": {
        "deleted": true
    },
    "metadata": {
        "link": "https://api.tackle.io/v1/webhooks/vendor"
    }
}

Ready to see the code in action? Check out our Delete a Vendor-Level Webhook recipe!