# Delete Node

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/msp/nodes/{node_id}/:
    delete:
      summary: Delete Node
      deprecated: false
      description: ''
      tags:
        - MSP Guide/API Reference/Node
      parameters:
        - name: node_id
          in: path
          description: ''
          required: true
          example: '{{node_id}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
              examples:
                '1':
                  summary: Success
                  value:
                    success:
                      - Node deleted successfully.
                '2':
                  summary: Unauthenticated
                  value:
                    detail: Authentication credentials were not provided.
          headers: {}
          x-apidog-name: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: array
                    items:
                      type: string
                required:
                  - error
                x-apidog-orders:
                  - error
              example:
                error:
                  - >-
                    There was an issue processing your request, please try
                    again.
          headers: {}
          x-apidog-name: ''
        '403':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                required:
                  - detail
                x-apidog-orders:
                  - detail
              example:
                detail: Authentication credentials were not provided.
          headers: {}
          x-apidog-name: Unauthenticated
      security:
        - bearer: []
      x-apidog-folder: MSP Guide/API Reference/Node
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1187388/apis/api-28136241-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security:
  - bearer: []

```
