Remove 911

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

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(_) {
  });
}

Parameters

Property
Type
Description

callId

Integer

Call ID to remove

Last updated

Was this helpful?