Create Call
This endpoint allows you to create a call that is sent to the call board of all units.
CreateCall(data, callback)
Request Body
Name
Type
Description
exports["ImperialCAD"]:CreateCall({
users_discordID = "123456789012345678",
street = "Broadway",
crossStreet = "5th St",
postal = "309",
city = "Los Santos",
county = "Blaine",
info = "Disturbance reported",
nature = "Disturbance",
status = "PENDING",
priority = 2
}, function(success, res)
print(success and "Call created." or ("Failed: " .. res))
end){
"status": "success",
"response": {
"callId": "F9G8H7I6J5",
"callnum": 204
}
}Last updated