Mezmo PresetAlerts API

Preset alert configuration

Operations 5

GET /v1/config/presetalert List Preset Alerts #
POST /v1/config/presetalert Create Preset Alert #
GET /v1/config/presetalert/{presetid} Get Preset Alert #
PUT /v1/config/presetalert/{presetid} Update Preset Alert #
DELETE /v1/config/presetalert/{presetid} Delete Preset Alert #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/mezmo-presetalerts-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

mezmo-presetalerts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mezmo Alerts Preset Alerts API
  description: 'Manage Mezmo preset alerts. Preset alerts encapsulate presence or absence

    triggers, frequency, count thresholds, and notification channels (PagerDuty,

    Slack, webhook, email) that views attach to.

    '
  version: '1.0'
servers:
- url: https://api.mezmo.com
security:
- AccessToken: []
tags:
- name: PresetAlerts
  description: Preset alert configuration
paths:
  /v1/config/presetalert:
    get:
      tags:
      - PresetAlerts
      summary: List Preset Alerts
      operationId: listPresetAlerts
      responses:
        '200':
          description: List of preset alerts.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PresetAlert'
    post:
      tags:
      - PresetAlerts
      summary: Create Preset Alert
      operationId: createPresetAlert
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PresetAlertInput'
      responses:
        '201':
          description: Alert created.
  /v1/config/presetalert/{presetid}:
    parameters:
    - name: presetid
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - PresetAlerts
      summary: Get Preset Alert
      operationId: getPresetAlert
      responses:
        '200':
          description: Alert details.
    put:
      tags:
      - PresetAlerts
      summary: Update Preset Alert
      operationId: updatePresetAlert
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PresetAlertInput'
      responses:
        '200':
          description: Alert updated.
    delete:
      tags:
      - PresetAlerts
      summary: Delete Preset Alert
      operationId: deletePresetAlert
      responses:
        '204':
          description: Alert deleted.
components:
  schemas:
    PresetAlert:
      allOf:
      - $ref: '#/components/schemas/PresetAlertInput'
      - type: object
        properties:
          presetid:
            type: string
    PresetAlertInput:
      type: object
      required:
      - name
      - channels
      properties:
        name:
          type: string
        triggerinterval:
          type: string
          description: Window over which to evaluate the trigger.
        triggerlimit:
          type: integer
        triggermatchingall:
          type: boolean
        operator:
          type: string
          enum:
          - presence
          - absence
        channels:
          type: array
          items:
            $ref: '#/components/schemas/AlertChannel'
    AlertChannel:
      type: object
      required:
      - integration
      properties:
        integration:
          type: string
          enum:
          - email
          - slack
          - pagerduty
          - webhook
          - opsgenie
          - victorops
        emails:
          type: array
          items:
            type: string
        url:
          type: string
        key:
          type: string
        immediate:
          type: boolean
        operator:
          type: string
        terminal:
          type: boolean
  securitySchemes:
    AccessToken:
      type: http
      scheme: bearer