For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add Call Note

Add a note to a dispatch call.

POST https://api.sonorancad.com/v2/emergency/servers/{serverId}/dispatch-calls/{callId}/notes

Rate limit: 60 requests per minute Authenticated v2 endpoints are rate limited per API key rather than per IP address.

Path Parameters

Name
Type
Description

serverId

integer

Configured Sonoran CAD server ID.

callId

integer

Dispatch or 911 call ID.

Request Body

{
  "note": "Suspect vehicle fleeing northbound",
  "noteType": "text",
  "label": "Integration"
}

Example Request

-- luarocks install sonoran.lua
-- For SonoranCADFiveM in-game usage, see the SonoranCADFiveM tab for the export-based client.
local Sonoran = require("sonoran")

local sonoran = Sonoran.createClient({
  product = Sonoran.productEnums.CAD,
  communityId = "YOUR_COMMUNITY_ID",
  apiKey = "YOUR_API_KEY",
  defaultServerId = 1
})

local response = sonoran.cad:addDispatchNoteV2(501, {
    serverId = 1,
    note = 'Caller updated with additional suspect info.',
    noteType = 'text',
    label = 'Dispatcher',
  })

-- Inspect response.success, response.data, or response.reason as needed.
print(response.success)

Response

Successful requests return application/json.

Last updated

Was this helpful?