Triage Link API Coming Soon

A secure, developer-friendly REST API with webhooks to integrate Triage Link into your systems. Generate API keys from your organisation settings and subscribe to real-time events.

Planned Capabilities

  • Create & update referrals
  • Retrieve real-time referral status
  • Assign / reassign consultants
  • Analytics & reporting endpoints
  • Webhook notifications

Authentication

API keys are generated in Triage Link. Send requests over HTTPS with:

Authorization: Bearer YOUR_API_KEY

Keys can be rotated; per-org scopes and rate limits planned.

Security

  • HTTPS only
  • Key rotation & scoping
  • Request signing for webhooks
  • Audit logging

Example Request (Illustrative)

GET /api/v1/referrals/ref_12345
Authorization: Bearer YOUR_API_KEY
Accept: application/json

Response

{
  "id": "ref_12345",
  "patient": { "name": "Jane Doe", "dob": "1980-04-12" },
  "status": "Under Review",
  "assigned_consultant": "Dr. A. Smith",
  "last_updated": "2025-08-08T10:42:00Z"
}

Example only. Endpoints will be published at launch.

Webhooks (Planned)

Subscribe to events and receive signed POSTs to your endpoint.

Event
Description
referral.created
Triggered when a new referral is created.
referral.status_changed
Any transition (e.g., Under Review → Assigned).
consultant.assigned
Referral assignment or reassignment occurs.
referral.closed
Referral completed with final outcome.

Delivery

  • Retries with exponential back-off
  • HMAC signature header: X-TriageLink-Signature
  • Test deliveries from dashboard