Skip to main content
PUT
/
alerts
cURL
curl --request PUT \
  --url https://api.vaultcord.com/alerts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "invite": "openai",
  "email": "jeff@amazon.com"
}'
{
  "success": true,
  "message": "Successfully created alert!"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Details of Discord termination alert to setup. Did you know these Discord termination alerts can be edited on dashboard to automatically start member pull when old server is termed!

invite
string

Discord invite code

Example:

"openai"

email
string

Email address to send alert to

Example:

"jeff@amazon.com"

Response

Successfully added termination alert. Edit on the dashboard to add automatic member pulling when old server termed!

success
boolean
Example:

true

message
string
Example:

"Successfully created alert!"

I