Send Panic

This endpoint allows you to send a panic to the CAD.

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?