Events/Logistics
rider.sos

Rider SOS

A rider has triggered the emergency SOS button — accident, threat, medical, or stuck. Payload includes the rider id, last-known lat/lng, reason, and free-text note. Subscribe ops to dispatch help immediately; this is highest-priority and bypasses the standard retry curve.

When this fires

Fires whenever the underlying state change happens on the platform.

Sample payload

This is the exact envelope shape we POST to your endpoint — outer wrapper plus the per-event data payload. Field values are randomised on each render so you see the general shape, not a fixed example.

json
{
  "id": "725b802a-39b3-4b02-948e-c4af7cb6ba53",
  "event": "rider.sos",
  "created": "2026-06-12T02:18:48.067Z",
  "data": {
    "message": "Sample payload not yet implemented for this event."
  }
}

Use cases

  • Trigger any downstream automation that cares about this state change.
  • Mirror the event into your data warehouse for analytics.
  • Notify a human channel for high-signal events.

Subscribe in the dashboard

To start receiving this event, add it to a webhook's subscription list in Developers → Webhooks. Wildcard subscriptions ( rider.*) work too — see the webhooks guide for the matching rules.