Set Call Postal

This endpoint allows you to easily update the postal on a dispatch call.

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

This framework export handles the Set Call Postal API endpoint.

function setCallPostal(callId, postal) {
    exports["sonorancad"].performApiRequest({
        serverId: GetConvar("sonoran_serverId", 1),
        callId: callId,
        postal: postal
    }, "SET_CALL_POSTAL", function (_) {
    });
}

Parameters

PropertyTypeDescription

callId

Integer

Call ID to add the note to

postal

Integer

Postal to add to the call

Last updated