Skip to main content
DELETE
/
v2
/
webhooks
/
{id}
curl --location --request DELETE 'https://api.audienceful.com/v2/webhooks/wYt3nKq8Zs4pLm9vRb2xJc' \
--header 'X-Api-Key: <your-api-key>'
import requests

url = "https://api.audienceful.com/v2/webhooks/wYt3nKq8Zs4pLm9vRb2xJc"
headers = {
    "X-Api-Key": "<your-api-key>",
}

response = requests.delete(url, headers=headers)
print(response.status_code)
const response = await fetch("https://api.audienceful.com/v2/webhooks/wYt3nKq8Zs4pLm9vRb2xJc", {
  method: "DELETE",
  headers: {
    "X-Api-Key": "<your-api-key>",
  },
});
console.log(response.status);
204 No Content
Requires the webhooks:write scope. The endpoint stops receiving deliveries immediately.

Path parameters

id
string
required
The id of the webhook endpoint to delete.

Response

Returns 204 No Content with an empty body.
curl --location --request DELETE 'https://api.audienceful.com/v2/webhooks/wYt3nKq8Zs4pLm9vRb2xJc' \
--header 'X-Api-Key: <your-api-key>'
import requests

url = "https://api.audienceful.com/v2/webhooks/wYt3nKq8Zs4pLm9vRb2xJc"
headers = {
    "X-Api-Key": "<your-api-key>",
}

response = requests.delete(url, headers=headers)
print(response.status_code)
const response = await fetch("https://api.audienceful.com/v2/webhooks/wYt3nKq8Zs4pLm9vRb2xJc", {
  method: "DELETE",
  headers: {
    "X-Api-Key": "<your-api-key>",
  },
});
console.log(response.status);
204 No Content