Middesk subpackage_monitoring API

The subpackage_monitoring API from Middesk — 2 operation(s) for subpackage_monitoring.

Operations 5

GET /v1/businesses/{business_id}/monitor Retrieve a monitor for a business #
POST /v1/businesses/{business_id}/monitor Create a monitor for a business #
PUT /v1/businesses/{business_id}/monitor Update a monitor for a business #
DELETE /v1/businesses/{business_id}/monitor Delete a monitor for a business #
POST /v1/monitoring/bulk_disable Bulk disable monitors #

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/middesk-subpackage-monitoring-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

middesk-subpackage-monitoring-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Middesk subpackage_actions Subpackage Monitoring API
  version: 1.0.0
servers:
- url: https://api.middesk.com
  description: Default
tags:
- name: subpackage_monitoring
paths:
  /v1/businesses/{business_id}/monitor:
    get:
      operationId: get-business-monitor
      summary: Retrieve a monitor for a business
      tags:
      - subpackage_monitoring
      parameters:
      - name: business_id
        in: path
        description: Business ID
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: monitor found
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: monitor not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__ErrorResponse'
    post:
      operationId: create-business-monitor
      summary: Create a monitor for a business
      tags:
      - subpackage_monitoring
      parameters:
      - name: business_id
        in: path
        description: Business ID
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: monitor created
          content:
            application/json:
              schema:
                description: Any type
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/type__MonitoringEventTypesParam'
    put:
      operationId: update-business-monitor
      summary: Update a monitor for a business
      tags:
      - subpackage_monitoring
      parameters:
      - name: business_id
        in: path
        description: Business ID
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: monitor updated
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: monitor not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__ErrorResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/type__MonitoringEventTypesParam'
    delete:
      operationId: delete-business-monitor
      summary: Delete a monitor for a business
      tags:
      - subpackage_monitoring
      parameters:
      - name: business_id
        in: path
        description: Business ID
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
        '404':
          description: monitor not found
          content:
            application/json:
              schema:
                description: Any type
  /v1/monitoring/bulk_disable:
    post:
      operationId: bulk-disable-monitors
      summary: Bulk disable monitors
      description: Disables monitors for all businesses in the account. This operation is processed asynchronously. When monitor_types is omitted, all monitor types allowed for the account are disabled.
      tags:
      - subpackage_monitoring
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                monitor_types:
                  type: array
                  items:
                    $ref: '#/components/schemas/type_monitoring_BulkDisableMonitorsParamMonitorTypesItem'
                  description: Array of monitor types to disable. Defaults to all types allowed for the account.
                notification_email:
                  type: string
                  description: Email address to notify when bulk disable operation completes
components:
  schemas:
    type__ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/type__ErrorResponseErrorsItem'
      required:
      - errors
      title: ErrorResponse
    type_monitoring_BulkDisableMonitorsParamMonitorTypesItem:
      type: string
      enum:
      - bankruptcy
      - certification
      - registration
      - tin
      - watchlist_result
      - lien
      title: BulkDisableMonitorsParamMonitorTypesItem
    type__ErrorResponseErrorsItem:
      type: object
      properties:
        message:
          type: string
      required:
      - message
      title: ErrorResponseErrorsItem
    type__MonitoringEventTypesParam:
      type: object
      properties:
        event_types:
          type: array
          items:
            type: string
          description: Array of event types to monitor, or ["*"] for all types
      required:
      - event_types
      title: MonitoringEventTypesParam
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer