Skip to main content
GET
/
webhooks
Listar webhooks
curl --request GET \
  --url https://api.lina.health/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "wh_abc123",
      "url": "https://tu-servidor.com/webhooks/lina",
      "events": ["form.completed", "call.ended", "credits.low"],
      "status": "active",
      "createdAt": "2026-05-14T10:00:00Z",
      "lastDeliveredAt": "2026-05-14T12:34:56Z"
    },
    {
      "id": "wh_def456",
      "url": "https://otro-servidor.com/hooks",
      "events": ["patient.created"],
      "status": "disabled",
      "createdAt": "2026-04-01T08:00:00Z",
      "lastDeliveredAt": "2026-04-28T15:00:00Z",
      "disabledReason": "Tasa de fallos superior al 95% durante 24 horas"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.linahealthcareplatform.com/llms.txt

Use this file to discover all available pages before exploring further.

{
  "data": [
    {
      "id": "wh_abc123",
      "url": "https://tu-servidor.com/webhooks/lina",
      "events": ["form.completed", "call.ended", "credits.low"],
      "status": "active",
      "createdAt": "2026-05-14T10:00:00Z",
      "lastDeliveredAt": "2026-05-14T12:34:56Z"
    },
    {
      "id": "wh_def456",
      "url": "https://otro-servidor.com/hooks",
      "events": ["patient.created"],
      "status": "disabled",
      "createdAt": "2026-04-01T08:00:00Z",
      "lastDeliveredAt": "2026-04-28T15:00:00Z",
      "disabledReason": "Tasa de fallos superior al 95% durante 24 horas"
    }
  ]
}
data[].status
string
Estado del webhook: active o disabled.
data[].lastDeliveredAt
string
Fecha del último envío exitoso.
data[].disabledReason
string
Motivo de desactivación, si aplica.