Add Call Note

This endpoint allows you to add a new dispatch call note.

This API endpoint requires the plus version of Sonoran CAD or higher. For more information, see our pricing page.

Add Call Note

POST https://api.sonorancad.com/emergency/add_call_note

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

ADD_CALL_NOTE

data

array

Array of request objects

NOTE 'some note here' added to call #123
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "ADD_CALL_NOTE",
    "data": [
        {
            "serverId": 1, // Default 1 - See guide on setting up multiple servers
            "callId": 123,
            "label": "A-10", // OPTIONAL (sender of the note)
            "note": "This is a test!" // Note text
        },
    ]
}

Note Object

Call notes are formatted on dispatch calls with the following object:

{
    "time": "12:00:00",
    "label": "A-10",
    "type": "text",
    "content": "This is a note!"
}

Last updated