Endpoints
Delete endpoint
DELETE
/
api
/
webhook
/
v2
/
endpoints
/
{endpointId}
curl --request DELETE \
--url https://api.atoa.me/api/webhook/v2/endpoints/4a124f25-fe8d-47a0-92c8-16d94cbfe24c \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Webhook endpoint deleted successfully"
}
Permanently deletes a webhook endpoint and all its event subscriptions. Webhook deliveries stop immediately.
Authorization
Bearer <token>
Path Parameters
endpointId
string
requiredThe unique identifier of the endpoint to delete.
Response
Returns 200 OK with a JSON body on success.
success
boolean
true when the endpoint was successfully deleted.
message
string
Webhook endpoint deleted successfully
curl --request DELETE \
--url https://api.atoa.me/api/webhook/v2/endpoints/4a124f25-fe8d-47a0-92c8-16d94cbfe24c \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Webhook endpoint deleted successfully"
}