> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tolmo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a Datadog monitor

> Delete a Tolmo-managed Datadog monitor. This removes the monitor in Datadog itself.



## OpenAPI

````yaml /api-reference/openapi.json delete /api/v1/orgs/{orgSlug}/datadog/monitors/{monitorId}
openapi: 3.0.3
info:
  title: Tolmo API
  version: 1.0.0
  description: >-
    The Tolmo REST API. Every endpoint is scoped to one organization and
    authenticated with an API token.
servers:
  - url: https://api.tolmo.com
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v1/orgs/{orgSlug}/datadog/monitors/{monitorId}:
    delete:
      tags:
        - datadog-monitors
      summary: Delete a Datadog monitor
      description: >-
        Delete a Tolmo-managed Datadog monitor. This removes the monitor in
        Datadog itself.
      operationId: deleteDatadogMonitor
      parameters:
        - schema:
            type: string
          in: query
          name: integrationId
          required: false
        - schema:
            type: string
          in: path
          name: orgSlug
          required: true
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
            maximum: 9007199254740991
          in: path
          name: monitorId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                  body: {}
                  truncated:
                    type: boolean
                  metadata:
                    type: object
                    properties:
                      integrationId:
                        type: string
                      durationMs:
                        type: number
                    required:
                      - integrationId
                      - durationMs
                    additionalProperties: false
                required:
                  - status
                  - body
                  - metadata
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    enum:
                      - 403
                  error:
                    type: string
                  code:
                    type: string
                    enum:
                      - NOT_MANAGED_BY_TOLMO
                  monitorId:
                    type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                  message:
                    type: string
                required:
                  - statusCode
                  - error
                  - code
                  - monitorId
                  - message
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Tolmo API token, sent as `Authorization: Bearer <token>`. Either a
        user token (`usr_tok.*`, minted by `tolmo auth login`, scoped to your
        own permissions) or an org API token created in the Tolmo app, for CI
        and automation.

````