For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesWhite-labelAPI Reference
GuidesWhite-labelAPI Reference
  • Panic API Reference
      • GETList active customer callouts
      • POSTRaise a customer callout
      • POSTRaise a callout (legacy)
      • GETList active callouts
      • GETGet a callout
      • POSTStream location and return callout
      • POSTStream a location update
      • GETRead callout events
      • POSTSend a callout event
      • GETList cancellation reasons
      • POSTCreate a cancellation reason
      • GETGenerate a resolution report
      • GETGet a callout map
      • POSTDismiss a callout
      • POSTCancel a callout
      • GETList rating items
      • POSTSubmit a rating item
      • POSTSubmit a callout rating
    • Errors & status codes
LogoLogo
Panic API ReferenceCallouts

List active callouts

GET
/panic-api/v2/callouts/activeCallouts
GET
/panic-api/v2/callouts/activeCallouts
$curl https://staging-panic.aura.services/panic-api/v2/callouts/activeCallouts \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1[
2 {
3 "id": 105432,
4 "customerId": 254789,
5 "predefinedLocationId": 12005,
6 "status": "Responder Dispatched",
7 "latitude": 40.712776,
8 "longitude": -74.005974,
9 "responseTypeId": 2,
10 "calloutClassificationId": 3,
11 "createdAt": "2024-06-10T14:45:00Z"
12 }
13]
Lists active callouts for the authenticated customer source.
Was this page helpful?
Previous

Get a callout

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Response

Active callouts.
idinteger
customerIdinteger
predefinedLocationIdinteger or null
statusstring

Legacy free-form status. Known values include created, Responder Dispatched, Responder Cancelled, and closed.

latitudedouble or null
longitudedouble or null
responseTypeIdinteger
calloutClassificationIdinteger
createdAtdatetime

Errors

401
Unauthorized Error