Create 911 Call
This endpoint allows you to create a call that is specific to an emergency call.
Create911Call(data, callback)
Request Body
Name
Type
Description
exports["ImperialCAD"]:Create911Call({
name = "Caller Name",
street = "Main St",
crossStreet = "2nd Ave",
postal = "102",
city = "Los Santos",
county = "Los Santos County",
info = "Suspicious vehicle parked on the curb"
}, function(success, res)
print(success and "Call sent!" or ("Failed: " .. res))
end){
"status": "success",
"response": {
"callId": "A1B2C3D4E5",
"callnum": 203
}
}Last updated