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")

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

204

No response body