Postman Monitors API

The Monitors API runs Postman Collections on a recurring schedule to validate API health, performance, and contract conformance. Surfaces metrics, test results, and notification webhooks for incident response.

Operations 8

GET /monitors Get all monitors #
POST /monitors Create a monitor #
GET /monitors/{monitorId} Get a monitor #
PUT /monitors/{monitorId} Update a monitor #
DELETE /monitors/{monitorId} Delete a monitor #
POST /monitors/{monitorId}/run Run a monitor #
GET /runners/{runnerId}/instances Get all runner instances #
GET /runners/{runnerId}/metrics Get runner metrics #

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/monitors-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

postman-monitors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Postman Monitors API
  version: 1.0.0
  description: 'Operations tagged monitors across 2 of this provider''s published API definitions: postman-api-openapi.yml, postman-monitors-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.postman.com
  description: https://api.postman.com
- url: https://api.eu.postman.com
  description: https://api.eu.postman.com
- url: https://api.getpostman.com
  description: Postman Production API Server
tags:
- name: monitors
paths:
  /monitors:
    get:
      operationId: getMonitors
      summary: Get all monitors
      description: Gets all monitors.
      tags:
      - monitors
      parameters:
      - name: workspace
        in: query
        description: Return only results found in the given workspace ID.
        required: false
        schema:
          $ref: '#/components/schemas/workspaceId'
      - name: active
        in: query
        description: If true, return only active monitors.
        required: false
        schema:
          $ref: '#/components/schemas/active'
          default: false
      - name: owner
        in: query
        description: Return only results that belong to the given user ID.
        required: false
        schema:
          $ref: '#/components/schemas/owner'
      - name: collectionUid
        in: query
        description: Filter the results by a collection's unique ID.
        required: false
        schema:
          $ref: '#/components/schemas/collectionUidQuery'
      - name: environmentUid
        in: query
        description: Filter the results by an environment's unique ID.
        required: false
        schema:
          $ref: '#/components/schemas/environmentUid'
      - name: cursor
        in: query
        description: The pointer to the first record of the set of paginated results. To view the next response, use the `nextCursor` value for this parameter.
        required: false
        schema:
          $ref: '#/components/schemas/cursor'
      - name: limit
        in: query
        description: The maximum number of rows to return in the response, up to a maximum value of 25. Any value greater than 25 returns a 400 Bad Request response.
        required: false
        schema:
          $ref: '#/components/schemas/limitDefault25'
          default: 25
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/getMonitors'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMonitorsRequestBadRequestError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMonitorsRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMonitorsRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/commonErrorNameMessage'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMonitorsRequestInternalServerError'
    post:
      operationId: createMonitor
      summary: Create a monitor
      description: 'Creates a monitor.


        **Note:**


        - You cannot create monitors for collections added to an API definition.

        - If you do not pass the `workspace` query parameter, the system creates the monitor in the oldest personal Internal workspace you own.

        '
      tags:
      - monitors
      parameters:
      - name: workspace
        in: query
        description: The workspace's ID.
        required: true
        schema:
          $ref: '#/components/schemas/workspaceId'
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/createUpdateMonitorResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateMonitorRequestBadRequestError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateMonitorRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateMonitorRequestForbiddenError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateMonitorRequestInternalServerError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/createMonitor'
    servers:
    - url: https://api.postman.com
      description: https://api.postman.com
    - url: https://api.eu.postman.com
      description: https://api.eu.postman.com
  /monitors/{monitorId}:
    get:
      operationId: getMonitor
      summary: Get a monitor
      description: Gets information about a monitor.
      tags:
      - monitors
      parameters:
      - name: monitorId
        in: path
        description: The monitor's ID.
        required: true
        schema:
          $ref: '#/components/schemas/monitorId'
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/getMonitor'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMonitorRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMonitorRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/commonErrorNameMessage'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMonitorRequestInternalServerError'
    put:
      operationId: updateMonitor
      summary: Update a monitor
      description: Updates a monitor's [configurations](https://learning.postman.com/docs/monitoring-your-api/setting-up-monitor/#configure-a-monitor).
      tags:
      - monitors
      parameters:
      - name: monitorId
        in: path
        description: The monitor's ID.
        required: true
        schema:
          $ref: '#/components/schemas/monitorId'
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/createUpdateMonitorResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateMonitorRequestBadRequestError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateMonitorRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateMonitorRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/commonErrorNameMessage'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateMonitorRequestInternalServerError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/updateMonitor'
    delete:
      operationId: deleteMonitor
      summary: Delete a monitor
      description: Deletes a monitor.
      tags:
      - monitors
      parameters:
      - name: monitorId
        in: path
        description: The monitor's ID.
        required: true
        schema:
          $ref: '#/components/schemas/monitorId'
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/deleteMonitor'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteMonitorRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteMonitorRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/commonErrorNameMessage'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteMonitorRequestInternalServerError'
    servers:
    - url: https://api.postman.com
      description: https://api.postman.com
    - url: https://api.eu.postman.com
      description: https://api.eu.postman.com
  /monitors/{monitorId}/run:
    post:
      operationId: runMonitor
      summary: Run a monitor
      description: 'Runs a monitor and returns its run results.


        **Note:**


        - If you pass the `async=true` query parameter, the response does not return the `stats`, `executions`, and `failures` responses. To get this information for an asynchronous run, call the GET `/monitors/{id}` endpoint.

        - If the call exceeds 300 seconds, the endpoint returns an HTTP `202 Accepted` response. Use the GET `/monitors/{id}` endpoint to check the run''s status in the response''s `lastRun` property. To avoid this, it is recommended that you include the `async=true` query parameter when using this endpoint.

        '
      tags:
      - monitors
      parameters:
      - name: monitorId
        in: path
        description: The monitor's ID.
        required: true
        schema:
          $ref: '#/components/schemas/monitorId'
      - name: async
        in: query
        description: If true, runs the monitor asynchronously from the created monitor run task. By default, the server will not respond until the task finishes (`false`).
        required: false
        schema:
          $ref: '#/components/schemas/async'
          default: false
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runMonitor'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunMonitorRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunMonitorRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/commonErrorNameMessage'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunMonitorRequestInternalServerError'
    servers:
    - url: https://api.postman.com
      description: https://api.postman.com
    - url: https://api.eu.postman.com
      description: https://api.eu.postman.com
  /runners/{runnerId}/instances:
    get:
      operationId: getRunnerInstances
      summary: Get all runner instances
      description: 'Gets all instances of the runner polling Postman for upcoming monitor runs. Instances are runner executions that share the same runner ID and key.


        **Note:**


        You can get a runner''s ID in the Postman UI if you have an Admin or Super Admin role. To do this, click **Team > Team Settings** in Postman, then click **Runners**. Click the runner you want to get the ID of, then copy its ID from the URL.

        '
      tags:
      - monitors
      parameters:
      - name: runnerId
        in: path
        description: The runner's ID.
        required: true
        schema:
          $ref: '#/components/schemas/runnerId'
      - name: limit
        in: query
        description: The maximum number of rows to return in the response, up to a maximum value of 25. Any value greater than 25 returns a 400 Bad Request response.
        required: false
        schema:
          $ref: '#/components/schemas/limitDefault25'
          default: 25
      - name: cursor
        in: query
        description: The pointer to the first record of the set of paginated results. To view the next response, use the `nextCursor` value for this parameter.
        required: false
        schema:
          $ref: '#/components/schemas/cursor'
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/getRunnerInstances'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runnerErrorTypeTitleDetailCreatedAt'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRunnerInstancesRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRunnerInstancesRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runnerErrorTypeTitleDetailCreatedAt'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRunnerInstancesRequestInternalServerError'
    servers:
    - url: https://api.postman.com
      description: https://api.postman.com
    - url: https://api.eu.postman.com
      description: https://api.eu.postman.com
  /runners/{runnerId}/metrics:
    get:
      operationId: getRunnerMetrics
      summary: Get runner metrics
      description: 'Gets the Postman server-side metrics for a runner instance. Metrics include information such as monitor run queues and last polling date.


        **Note:**


        You can get a runner''s ID in the Postman UI if you have a Team Admin or Super Admin role. To do this, click **Team > Team Settings** in Postman, then click **Runners**. Click the runner you want to get the ID of, then copy its ID from the URL.

        '
      tags:
      - monitors
      parameters:
      - name: runnerId
        in: path
        description: The runner's ID.
        required: true
        schema:
          $ref: '#/components/schemas/runnerId'
      - name: x-api-key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/getRunnerMetrics'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRunnerMetricsRequestUnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRunnerMetricsRequestForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runnerErrorTypeTitleDetailCreatedAt'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRunnerMetricsRequestInternalServerError'
    servers:
    - url: https://api.postman.com
      description: https://api.postman.com
    - url: https://api.eu.postman.com
      description: https://api.eu.postman.com
components:
  schemas:
    GetMonitorsRequestForbiddenError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: GetMonitorsRequestForbiddenError
    monitorRetry:
      type: object
      properties:
        attempts:
          type: number
          format: double
          description: The number of times to reattempt a monitor run if it fails or errors. This may impact your [monitor usage](https://learning.postman.com/docs/monitoring-your-api/monitor-usage/#view-monitor-usage).
      description: Information about the monitor's retry settings.
      title: monitorRetry
    monitorRunInfo:
      type: object
      properties:
        jobId:
          type: string
          description: The monitor's run job ID.
        collectionUid:
          type: string
          format: uid
          description: The unique ID of the monitor's associated collection.
        environmentUid:
          type: string
          format: uid
          description: The unique ID of the monitor's associated environment.
        monitorId:
          type: string
          description: The monitor's ID.
        name:
          type: string
          description: The monitor's name.
        status:
          type: string
          description: The monitor run's status.
        startedAt:
          type: string
          format: date-time
          description: The date and time at which the monitor run began.
        finishedAt:
          type: string
          format: date-time
          description: The date and time at which the monitor's run completed.
      description: Information about the monitor.
      title: monitorRunInfo
    GetMonitorMonitorSchedule:
      type: object
      properties:
        cron:
          type: string
          description: The monitor's POSIX cron frequency value.
        nextRun:
          type: string
          format: date-time
          description: The date and time of monitor's next scheduled run.
        timezone:
          type: string
          description: The monitor's timezone.
      description: Information about the monitor's schedule.
      title: GetMonitorMonitorSchedule
    MonitorRunExecutionsItems:
      type: object
      properties:
        id:
          type: number
          format: double
          description: The execution ID.
        item:
          $ref: '#/components/schemas/MonitorRunExecutionsItemsItem'
          description: Information about the executed item.
        request:
          $ref: '#/components/schemas/monitorRunRequests'
        response:
          $ref: '#/components/schemas/monitorRunResponses'
        errors:
          $ref: '#/components/schemas/monitorRunErrors'
      title: MonitorRunExecutionsItems
    collectionUidQuery:
      type: string
      format: uid
      title: collectionUidQuery
    UpdateMonitorRequestUnauthorizedError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: UpdateMonitorRequestUnauthorizedError
    environmentUid:
      type: string
      format: uid
      title: environmentUid
    CreateUpdateMonitorResponseMonitor:
      type: object
      properties:
        id:
          type: string
          description: The monitor's ID.
        name:
          type: string
          description: The monitor's name.
        active:
          type: boolean
          default: true
          description: If true, the monitor is active and makes calls to the specified URL.
        uid:
          type: string
          format: uid
          description: The monitor's unique ID.
      description: Information about the monitor.
      title: CreateUpdateMonitorResponseMonitor
    monitorRunExecutions:
      type: array
      items:
        $ref: '#/components/schemas/MonitorRunExecutionsItems'
      description: Information about the monitor run's executions.
      title: monitorRunExecutions
    MonitorRunStatsRequests:
      type: object
      properties:
        total:
          type: number
          format: double
          description: The total number of requests.
        failed:
          type: number
          format: double
          description: The number of request failures.
      description: Information about the monitor's requests.
      title: MonitorRunStatsRequests
    GetMonitorsRequestBadRequestError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorNameMessage'
      - $ref: '#/components/schemas/commonErrorNameMessageDetails'
      title: GetMonitorsRequestBadRequestError
    GetMonitorsRequestInternalServerError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetail'
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: GetMonitorsRequestInternalServerError
    cursor:
      type: string
      title: cursor
    monitorId:
      type: string
      title: monitorId
    runnerId:
      type: string
      title: runnerId
    commonErrorNameMessage:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/CommonErrorNameMessageError'
          description: Information about the error.
      title: commonErrorNameMessage
    monitorRunRequests:
      type: object
      properties:
        method:
          type: string
          description: The HTTP request method.
        url:
          type: string
          format: url
          description: The request's URL.
        body:
          type: object
          additionalProperties:
            description: Any type
          description: Information about the request body, such as Content-Length.
        headers:
          type: object
          additionalProperties:
            description: Any type
          description: Information about the request headers, such as Content-Type, Accept, encoding, and other information.
        timestamp:
          type: string
          description: The date and time of the request.
      description: Information about the monitor run's requests.
      title: monitorRunRequests
    CommonErrorTypeTitleDetailStatusType:
      oneOf:
      - type: string
        format: uri-reference
      - type: string
      title: CommonErrorTypeTitleDetailStatusType
    GetMonitorsMeta:
      type: object
      properties:
        nextCursor:
          type:
          - string
          - 'null'
          description: The pagination cursor that points to the next record in the results set.
        limit:
          type: integer
          description: The maximum number of records in the paginated response.
      description: The response's meta information for paginated results.
      title: GetMonitorsMeta
    GetMonitorRequestInternalServerError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetail'
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: GetMonitorRequestInternalServerError
    MonitorDistributionItemsRegion:
      type: string
      enum:
      - us-east
      - us-west
      - ap-southeast
      - ca-central
      - eu-central
      - sa-east
      - uk
      - us-east-staticip
      - us-west-staticip
      description: The assigned distribution region.
      title: MonitorDistributionItemsRegion
    GetMonitorsMonitorsItems:
      type: object
      properties:
        id:
          type: string
          description: The monitor's ID.
        name:
          type: string
          description: The monitor's name.
        active:
          type: boolean
          description: Whether the monitor is active (`true`) or inactive (`false`).
        uid:
          type: string
          format: uid
          description: The monitor's unique ID.
        owner:
          type: integer
          description: The ID of the user that created the monitor.
        collectionUid:
          type: string
          description: The unique ID of the monitor's associated collection.
        environmentUid:
          type: string
          description: The unique ID of the monitor's associated environment.
      description: Information about the monitor.
      title: GetMonitorsMonitorsItems
    MonitorNotificationsOnFailureItems:
      type: object
      properties:
        email:
          type: string
          format: email
          description: The email address of the user to notify on monitor failure.
      title: MonitorNotificationsOnFailureItems
    CommonErrorNameMessageDetailsError:
      type: object
      properties:
        name:
          type: string
          description: The error name.
        message:
          type: string
          description: The error message.
        details:
          $ref: '#/components/schemas/CommonErrorNameMessageDetailsErrorDetails'
          description: Information about the error.
      title: CommonErrorNameMessageDetailsError
    MonitorRunStatsAssertions:
      type: object
      properties:
        total:
          type: number
          format: double
          description: The total number of tests performed.
        failed:
          type: number
          format: double
          description: The total number of test failures.
      description: Information about the monitor's tests.
      title: MonitorRunStatsAssertions
    MonitorDistributionItems:
      type: object
      properties:
        region:
          $ref: '#/components/schemas/MonitorDistributionItemsRegion'
          description: The assigned distribution region.
      title: MonitorDistributionItems
    monitorNotifications:
      type: object
      properties:
        onError:
          type: array
          items:
            $ref: '#/components/schemas/MonitorNotificationsOnErrorItems'
        onFailure:
          type: array
          items:
            $ref: '#/components/schemas/MonitorNotificationsOnFailureItems'
      description: Information about the monitor's notification settings.
      title: monitorNotifications
    CommonErrorNameMessageError:
      type: object
      properties:
        name:
          type: string
          description: The error name.
        message:
          type: string
          description: The error message.
      description: Information about the error.
      title: CommonErrorNameMessageError
    UpdateMonitorMonitor:
      type: object
      properties:
        name:
          type: string
          description: The monitor's name.
        active:
          type: boolean
          default: true
          description: If true, the monitor is active and makes calls to the specified URL.
        notificationLimit:
          type: number
          format: double
          description: Stop email notifications after the given number consecutive failures.
        retry:
          $ref: '#/components/schemas/monitorRetry'
        options:
          $ref: '#/components/schemas/monitorOptions'
        schedule:
          $ref: '#/components/schemas/monitorSchedule'
        distribution:
          $ref: '#/components/schemas/monitorDistribution'
        notifications:
          $ref: '#/components/schemas/monitorNotifications'
      description: Information about the monitor.
      title: UpdateMonitorMonitor
    createMonitor:
      type: object
      properties:
        monitor:
          $ref: '#/components/schemas/CreateMonitorMonitor'
          description: Information about the monitor.
      title: createMonitor
    DeleteMonitorRequestUnauthorizedError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: DeleteMonitorRequestUnauthorizedError
    runnerMeta:
      type: object
      properties:
        model:
          type: string
          description: The `runnerInstance` value.
        action:
          type: string
          description: The `find` value.
        url:
          type: string
          format: uri-reference
          description: The reference URL to the resource.
        nextCursor:
          type: string
          description: The pagination cursor that points to the next record in the results set.
      description: The response's meta information for paginated results.
      title: runnerMeta
    MonitorRunExecutionsItemsItem:
      type: object
      properties:
        name:
          type: string
          description: The executed item's name.
      description: Information about the executed item.
      title: MonitorRunExecutionsItemsItem
    owner:
      type: integer
      title: owner
    UpdateMonitorRequestBadRequestError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorNameMessage'
      - $ref: '#/components/schemas/commonErrorNameMessageDetails'
      title: UpdateMonitorRequestBadRequestError
    DeleteMonitorMonitor:
      type: object
      properties:
        id:
          type: string
          description: The monitor's ID.
        uid:
          type: string
          format: uid
          description: The monitor's unique ID.
      description: Information about the monitor.
      title: DeleteMonitorMonitor
    CreateMonitorRequestUnauthorizedError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: CreateMonitorRequestUnauthorizedError
    UpdateMonitorRequestInternalServerError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetail'
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: UpdateMonitorRequestInternalServerError
    async:
      type: boolean
      default: false
      title: async
    RunMonitorRequestInternalServerError:
      oneOf:
      - $ref: '#/components/schemas/commonErrorTypeTitleDetail'
      - $ref: '#/components/schemas/commonErrorTypeTitleDetailStatus'
      - $ref: '#/components/schemas/commonErrorNameMessage'
      title: RunMonitorRequestInternalServerError
    monitorRunStats:
      type: object
      properties:
        assertions:
          $ref: '#/components/schemas/MonitorRunStatsAssertions'
          description: Information about the monitor's tests.
        requests:
          $ref: '#/co

# --- truncated at 32 KB (59 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/postman/refs/heads/main/openapi/postman-monitors-api-openapi.yml