Remove 911

This endpoint allows you to remove an existing emergency/911 call from the CAD.

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

This framework export handles the Remove Emergency Call API endpoint.

function remove911(callId)
    exports["sonorancad"]:performApiRequest({{
        ["serverId"] = GetConvar("sonoran_serverId", 1),
        ["callId"] = callId
    }}, "REMOVE_911", function(_)
    end)
end

Parameters

PropertyTypeDescription

callId

Integer

Call ID to remove

Last updated