Create 911 Call
This endpoint allows you to create a call that is specific to an emergency call.
This endpoint requires any ImperialCAD subscription.
Create911Call(data, callback)
POST https://imperialcad.app/api/1.1/wf/create911call
Request Body
Name
Type
Description
name
string
Caller's name
street
string
Street name
crossStreet
string
Cross street
postal
string
Postal
city
string
City of Call
county
string
County of Call
info
string
Call information
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
Was this helpful?