Send Panic
This endpoint allows you to send a panic to the CAD.
This endpoint requires any ImperialCAD subscription.
Panic(data, callback)
POST https://imperialcad.app/api/1.1/wf/panic
Request Body
Name
Type
Description
users_discordID
string
The discord ID of user
street
string
Street
postal
string
Postal
Example
exports["ImperialCAD"]:Panic({
users_discordID = "123456789012345678",
street = "Mission Row",
postal = "203"
}, function(success, res)
print(success and "Panic sent!" or ("Failed: " .. res))
end)Last updated
Was this helpful?