PUT
/
alerts
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
alert JSON to be created
invite
string

Discord invite code

Example:

"openai"

email
string

Email address to send alert to

Example:

"jeff@amazon.com"

Response

200
application/json
SUCCESS_MESSAGE
success
boolean
Example:

true

message
string
Example:

"Successfully created alert!"