Toda la documentación
DOCS api / endpoints

DELETE /webhooks/:id and GET /health

Delete webhook subscriptions and check API health.

Delete Webhook and Check Health

Delete webhook

Endpoint: DELETE /webhooks/:id

  • Returns 204 on success.
  • Returns 404 if webhook is not found.

Health check

Endpoint: GET /health

Health endpoint is public and does not require auth.

Example response:

{
  "status": "ok",
  "service": "social-publisher-api",
  "timestamp": "2026-03-23T18:00:00.000Z",
  "checks": {
    "redis": "ok"
  }
}