ilert · Schema

AlertAction

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations

Properties

Name Type Description
id string
alertSources array
connectorId string
connectorType object
name string
createdAt string
updatedAt string
triggerMode string
bidirectional boolean
escalationEndedDelaySec number May only be used with triggerType 'alert-escalation-ended' selected
notResolvedDelaySec number May only be used with triggerType 'v-alert-not-resolved' selected
triggerTypes array
alertFilter object This field is deprecated, use 'conditions' instead. If both are used this field is ignored.
conditions string Defines an optional alert filter condition in ICL language. This is a code based implementation, more info on syntax: https://docs.ilert.com/rest-api/icl-ilert-condition-language. For block based conf
params object
teams array
View JSON Schema on GitHub

JSON Schema

alertaction.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/AlertAction",
  "title": "AlertAction",
  "required": [
    "connectorType",
    "name"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "alertSources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AlertSource"
      }
    },
    "connectorId": {
      "type": "string"
    },
    "connectorType": {
      "$ref": "#/components/schemas/AlertActionType"
    },
    "name": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    },
    "triggerMode": {
      "type": "string",
      "enum": [
        "AUTOMATIC",
        "MANUAL"
      ]
    },
    "bidirectional": {
      "type": "boolean",
      "readOnly": true
    },
    "escalationEndedDelaySec": {
      "maximum": 7200,
      "minimum": 0,
      "type": "number",
      "description": "May only be used with triggerType 'alert-escalation-ended' selected"
    },
    "notResolvedDelaySec": {
      "maximum": 7200,
      "minimum": 0,
      "type": "number",
      "description": "May only be used with triggerType 'v-alert-not-resolved' selected"
    },
    "triggerTypes": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "alert-created",
          "alert-assigned",
          "alert-auto-escalated",
          "alert-acknowledged",
          "alert-raised",
          "alert-comment-added",
          "alert-escalation-ended",
          "alert-resolved",
          "alert-responder-added",
          "alert-responder-removed",
          "alert-channel-attached",
          "alert-channel-detached",
          "v-alert-not-resolved"
        ]
      }
    },
    "alertFilter": {
      "type": "object",
      "description": "This field is deprecated, use 'conditions' instead. If both are used this field is ignored.",
      "properties": {
        "operator": {
          "type": "string",
          "enum": [
            "AND",
            "OR"
          ]
        },
        "predicates": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "field": {
                "type": "string",
                "enum": [
                  "ALERT_SUMMARY",
                  "ALERT_DETAILS",
                  "ESCALATION_POLICY",
                  "ALERT_PRIORITY"
                ]
              },
              "criteria": {
                "type": "string",
                "enum": [
                  "CONTAINS_ANY_WORDS",
                  "CONTAINS_NOT_WORDS",
                  "CONTAINS_STRING",
                  "CONTAINS_NOT_STRING",
                  "IS_STRING",
                  "IS_NOT_STRING",
                  "MATCHES_REGEX",
                  "MATCHES_NOT_REGEX"
                ]
              },
              "value": {
                "type": "string"
              }
            }
          }
        }
      }
    },
    "conditions": {
      "type": "string",
      "description": "Defines an optional alert filter condition in ICL language. This is a code based implementation, more info on syntax: https://docs.ilert.com/rest-api/icl-ilert-condition-language. For block based configuration please use the web UI. Note: this field is an ?include, it will not appear in lists."
    },
    "params": {
      "type": "object",
      "oneOf": [
        {
          "$ref": "#/components/schemas/CParamsDatadog"
        },
        {
          "$ref": "#/components/schemas/CParamsJira"
        },
        {
          "$ref": "#/components/schemas/CParamsMicrosoftTeams"
        },
        {
          "$ref": "#/components/schemas/CParamsMicrosoftTeamsWebhookOnly"
        },
        {
          "$ref": "#/components/schemas/CParamsServiceNow"
        },
        {
          "$ref": "#/components/schemas/CParamsAutotask"
        },
        {
          "$ref": "#/components/schemas/CParamsSlack"
        },
        {
          "$ref": "#/components/schemas/CParamsWebhook"
        },
        {
          "$ref": "#/components/schemas/CParamsZendesk"
        },
        {
          "$ref": "#/components/schemas/CParamsDiscord"
        },
        {
          "$ref": "#/components/schemas/CParamsGithub"
        },
        {
          "$ref": "#/components/schemas/CParamsTopdesk"
        },
        {
          "$ref": "#/components/schemas/CParamsAWSLambda"
        },
        {
          "$ref": "#/components/schemas/CParamsAzureFunction"
        },
        {
          "$ref": "#/components/schemas/CParamsGoogleFunction"
        },
        {
          "$ref": "#/components/schemas/CParamsEmail"
        },
        {
          "$ref": "#/components/schemas/CParamsSysdig"
        },
        {
          "$ref": "#/components/schemas/CParamsZapier"
        },
        {
          "$ref": "#/components/schemas/CParamsZoomChat"
        },
        {
          "$ref": "#/components/schemas/CParamsZoomMeeting"
        },
        {
          "$ref": "#/components/schemas/CParamsStatusPageIO"
        },
        {
          "$ref": "#/components/schemas/CParamsDingTalk"
        },
        {
          "$ref": "#/components/schemas/CParamsDingTalkAction"
        },
        {
          "$ref": "#/components/schemas/CParamsAutomationRule"
        },
        {
          "$ref": "#/components/schemas/CParamsAutomationRule"
        },
        {
          "$ref": "#/components/schemas/CParamsTelegram"
        },
        {
          "$ref": "#/components/schemas/CParamsGoogleChat"
        },
        {
          "$ref": "#/components/schemas/CParamsGoogleChatWebhookOnly"
        }
      ]
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamRel"
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/alertaction"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.