NinjaOne Unmanaged Devices API

The Unmanaged Devices API from NinjaOne — 2 operation(s) for unmanaged devices.

Operations 3

POST /v2/itam/unmanaged-device Create an Unmanaged Device #
PUT /v2/itam/unmanaged-device/{nodeId} Update an Unmanaged Device #
DELETE /v2/itam/unmanaged-device/{nodeId} Delete an Unmanaged Device #

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/ninjaone-unmanaged-devices-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

ninjaone-unmanaged-devices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NinjaOne Public API 2.0 Asset Tags Unmanaged Devices API
  description: NinjaOne Public API documentation.
  contact:
    email: api@ninjarmm.com
  version: 2.0.9-draft
servers:
- url: https://app.ninjarmm.com/v2
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- oauth2:
  - monitoring
  - management
  - control
- sessionKey:
  - monitoring
  - management
  - control
tags:
- name: Unmanaged Devices
paths:
  /v2/itam/unmanaged-device:
    post:
      tags:
      - Unmanaged Devices
      summary: Create an Unmanaged Device
      description: Create an Unmanaged Device with the provided details
      operationId: createUnmanagedDevicePublicApi
      requestBody:
        description: The Unmanaged Device to be created
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateUnmanagedDevicePublicApiRequest'
      responses:
        '200':
          description: The id of the Unmanaged Device that was created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateUnmanagedDevicePublicApiResponseDTO'
  /v2/itam/unmanaged-device/{nodeId}:
    put:
      tags:
      - Unmanaged Devices
      summary: Update an Unmanaged Device
      description: Update an Unmanaged Device with the provided details
      operationId: updateUnmanagedDevicePublicApi
      parameters:
      - name: nodeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        description: Details of the Unmanaged Device to be updated
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateUnmanagedDevicePublicApiRequest'
      responses:
        '202':
          description: The Unmanaged Device was successfully updated
        '404':
          description: An Unmanaged Device with the provided nodeId was not found
    delete:
      tags:
      - Unmanaged Devices
      summary: Delete an Unmanaged Device
      description: Delete an Unmanaged Device with the provided id
      operationId: deleteUnmanagedDevicePublicApi
      parameters:
      - name: nodeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The Unmanaged Device was successfully deleted
        '404':
          description: An Unmanaged Device with the provided nodeId was not found
components:
  schemas:
    CreateUnmanagedDevicePublicApiResponseDTO:
      type: object
      properties:
        nodeId:
          type: integer
          format: int32
    UpdateUnmanagedDevicePublicApiRequest:
      required:
      - locationId
      - name
      - orgId
      - serialNumber
      type: object
      properties:
        name:
          maxLength: 200
          minLength: 0
          type: string
          description: The display name of the device to be updated
        orgId:
          type: integer
          description: The id of the organization the device belongs to
          format: int32
        locationId:
          type: integer
          description: The id of the location the device belongs to
          format: int32
        serialNumber:
          type: string
          description: The serial number of the device
        assignedUserUid:
          type: string
          description: The UUID of the user this device is assigned to
          format: uuid
        warrantyStartDate:
          type: number
          description: The warranty start date for the device, in unix epoch seconds
          format: double
        warrantyEndDate:
          type: number
          description: The warranty end date for the device, in unix epoch seconds
          format: double
    CreateUnmanagedDevicePublicApiRequest:
      required:
      - locationId
      - name
      - orgId
      - roleId
      - serialNumber
      type: object
      properties:
        name:
          maxLength: 200
          minLength: 0
          type: string
          description: The display name of the device to be created
        orgId:
          type: integer
          description: The id of the organization the device belongs to
          format: int32
        locationId:
          type: integer
          description: The id of the location the device belongs to
          format: int32
        roleId:
          type: integer
          description: 'The id of the role to use for this device. Must be a sub-role of Unmanaged Device '
          format: int32
        serialNumber:
          type: string
          description: The serial number of the device
        assignedUserUid:
          type: string
          description: The UUID of the user this device is assigned to
          format: uuid
        warrantyStartDate:
          type: number
          description: The warranty start date for the device, in unix epoch seconds
          format: double
        warrantyEndDate:
          type: number
          description: The warranty end date for the device, in unix epoch seconds
          format: double
  securitySchemes:
    oauth2:
      type: http
      scheme: bearer
      bearerFormat: bearer
    sessionKey:
      type: apiKey
      name: sessionKey
      in: cookie