Delete Call
This endpoint allows you to delete a call.
This endpoint requires any ImperialCAD subscription.
DeleteCall(data, callback)
POST https://imperialcad.app/api/1.1/wf/deletecall
Request Body
Name
Type
Description
callId
string
ID of Call
discordId
string
User's discord ID
exports["ImperialCAD"]:DeleteCall({
callId = "A1B2C3D4E5",
discordId = "123456789012345678"
}, function(success, res)
print(success and "Call deleted." or ("Failed: " .. res))
end)"Call ID A1B2C3D4E5 closed"Last updated
Was this helpful?