Skip to main content
POST
/
v3
/
monitors
/
alerts
Create an alert config for a gate
curl --request POST \
  --url https://api.verlon.ai/v3/monitors/alerts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "gateId": "<string>",
  "triggerType": "<string>",
  "config": "<unknown>",
  "channels": [
    "<unknown>"
  ],
  "triggerReanalysis": true,
  "cooldownMinutes": 123
}
'
{
  "error": "<string>",
  "message": "<string>",
  "details": "<unknown>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.verlon.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Layer API key (prefixed sk-). Generated from the dashboard under Settings → API Keys, or via layer key create in the CLI.

Body

application/json
gateId
string
required
triggerType
string
required
config
any
required
channels
any[]
triggerReanalysis
boolean
cooldownMinutes
number

Response

Alert config created.