Set Call Postal

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

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

Property
Type
Description

callId

Integer

Call ID to add the note to

postal

Integer

Postal to add to the call

Last updated

Was this helpful?