Overview
DELETE
/processing/webhooks/{id}processingSoft-delete a webhook endpoint
Marks the endpoint as deleted (sets `deleted_at`). The row is preserved for audit but hidden from future list results and excluded from deliveries. Returns 404 when not found, already deleted, or owned by another ecosystem.
Auth: bearerAuth — calls run as the authenticated user.
Parameters
- idpathstring
Responses
200
Endpoint soft-deleted
- oktrue
Example
{
"ok": true
}401
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}404
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}Code examples
cURL
curl -X DELETE "https://api.agenticdeveloperhub.com/processing/webhooks/{id}" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/processing/webhooks/{id}", {
method: "DELETE",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();