Create Call Note
This endpoint allows you to create a call note to the user's current call.
This endpoint requires any ImperialCAD subscription.
NewCallNote(data, callback)
POST https://imperialcad.app/api/1.1/wf/newcallnote
Request Body
Name
Type
Description
users_discordID
string
The discord ID of user
description
string
Call note
Example
exports["ImperialCAD"]:NewCallNote({
users_discordID = "123456789012345678",
description = "Caller updated: suspects have left the area."
}, function(success, res)
print(success and "Note added." or ("Failed: " .. res))
end)Last updated
Was this helpful?