Skip to main content
DELETE
/
webhooks
/
{webhook_id}
Python
import requests

webhook_id = "your-webhook-id"
response = requests.delete(
    f"https://api.roe-ai.com/webhooks/{webhook_id}/",
    headers={"Authorization": "Bearer YOUR_API_KEY"}
)
if response.status_code == 204:
    print("Webhook deleted")
This API endpoint will be available in the next release. For now, use the Roe UI to manage webhooks.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhook_id
string<uuid>
required

Response

Webhook deleted successfully