# Create Node

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/msp/nodes/:
    post:
      summary: Create Node
      deprecated: false
      description: ''
      tags:
        - MSP Guide/API Reference/Node
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
              required:
                - name
              x-apidog-orders:
                - name
            example:
              name: South America
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  uid:
                    type: string
                  name:
                    type: string
                  is_parent_node:
                    type: boolean
                x-apidog-orders:
                  - id
                  - uid
                  - name
                  - is_parent_node
              example:
                id: 77
                uid: a024fd95-b24f-4823-8a2f-0bd6f4bc1a87
                name: South America
                is_parent_node: false
          headers: {}
          x-apidog-name: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: array
                    items:
                      type: string
                x-apidog-orders:
                  - name
              examples:
                '2':
                  summary: Basic Error
                  value:
                    name:
                      - This field may not be blank.
                '3':
                  summary: Basic Error
                  value:
                    name:
                      - msp node with this name already exists.
          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: []
      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-28136239-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security:
  - bearer: []

```
