Delete webhook

DELETE
https://reloop.sh/api/webhook/v1/:id

Path Parameters

idstringRequired

Webhook ID

  • Minimum length: 1
await fetch("https://reloop.sh/webhook/v1/wh_123456789", {
  method: "DELETE",
  headers: {
    "Authorization": "Bearer rl_123456789"
  }
});
{
  "id": "wh_123456789",
  "message": "Webhook deleted successfully"
}

Was this page helpful?

Edit this page