Skip to main content
POST
/
mdts
/
{mdtId}
/
units
/
active
/
{unitId}
/
panic
Trigger a panic event for an active unit
curl --request POST \
  --url https://api.northca.dev/v1/mdts/{mdtId}/units/active/{unitId}/panic \
  --header 'Content-Type: application/json' \
  --header 'x-discord-guild: <x-discord-guild>' \
  --header 'x-partner-key: <api-key>' \
  --data '
{
  "address": "67 Mango Place"
}
'
{
  "ok": true,
  "data": {
    "panicked": true,
    "unit_id": "ADAM-12",
    "ts": "2026-03-01T01:23:45.678Z"
  }
}

Authorizations

x-partner-key
string
header
required

Partner API key provided by Northca.

Headers

x-discord-guild
string
required

Discord Guild ID (server/guild context for the request).

x-discord-actor
string

Discord User ID for the acting user (optional; used for audit fields).

Path Parameters

mdtId
string
required

MDT ID.

unitId
string
required

Active unit ID.

Body

application/json
address
string | null

Optional location/address to include with the panic event.

Response

Panic acknowledged.

ok
boolean
required
data
object
required

Response payload.