Webhooks

Get notified when events happen in PILOT.

Coming Soon

Webhooks are in development

We're building a webhook system that will notify your application in real-time when events occur in PILOT.

Planned Events

The following webhook events are planned for the initial release:

EventDescription
capture.createdA new capture was received and classified
capture.routedA capture was manually routed to a tier
task.createdA new task was created (manually or from capture)
task.completedA task was marked as complete
decision.createdA new decision was logged
email.triagedNew email triage results are available
email.delegatedAn email was delegated to a team member
briefing.readyDaily or weekly briefing has been generated
relationship.alertA relationship health threshold was crossed
entity.mergedTwo entities were merged in the graph

Planned Payload Format

Each webhook delivery will include:

{
  "id": "evt_abc123",
  "type": "task.completed",
  "created_at": "2026-04-05T14:30:00Z",
  "data": {
    "task_id": "tsk_xyz789",
    "title": "Review Q3 proposal",
    "completed_at": "2026-04-05T14:30:00Z"
  }
}

Planned Security

Get Notified

Want to know when webhooks launch? Join the PILOT waitlist or contact us at support@withpilot.ai.

In the meantime, you can poll the API endpoints to check for changes. The GET /api/v1/briefing and GET /api/v1/email/triage endpoints are good starting points for periodic polling.