Cumulocity New Device Requests API

The New Device Requests API from Cumulocity — 2 operation(s) for new device requests.

Operations 5

GET /devicecontrol/newDeviceRequests List New Device Requests #
POST /devicecontrol/newDeviceRequests Create a New Device Request #
GET /devicecontrol/newDeviceRequests/{id} Retrieve a New Device Request #
PUT /devicecontrol/newDeviceRequests/{id} Accept or Reject a New Device Request #
DELETE /devicecontrol/newDeviceRequests/{id} Delete a New Device Request #

Documentation

Specifications

Schemas & Data

Other Resources

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/cumulocity-new-device-requests-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

cumulocity-new-device-requests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cumulocity Device Bootstrap New Device Requests API
  version: 10.20.0
  description: 'Zero-touch device onboarding flow. A factory-bootstrapped device authenticates with a shared bootstrap

    user, polls /devicecontrol/deviceCredentials with its external ID, and receives back tenant-scoped

    credentials once an admin accepts the registration request in the Device Management UI.

    '
servers:
- url: https://{tenant}.cumulocity.com
  variables:
    tenant:
      default: example
security:
- bootstrapAuth: []
- basicAuth: []
tags:
- name: New Device Requests
paths:
  /devicecontrol/newDeviceRequests:
    get:
      tags:
      - New Device Requests
      summary: List New Device Requests
      operationId: listNewDeviceRequests
      responses:
        '200':
          description: A collection of pending registration requests.
    post:
      tags:
      - New Device Requests
      summary: Create a New Device Request
      operationId: createNewDeviceRequest
      requestBody:
        required: true
        content:
          application/vnd.com.nsn.cumulocity.newDeviceRequest+json:
            schema:
              $ref: '#/components/schemas/NewDeviceRequest'
      responses:
        '201':
          description: Registration request created.
  /devicecontrol/newDeviceRequests/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - New Device Requests
      summary: Retrieve a New Device Request
      operationId: getNewDeviceRequest
      responses:
        '200':
          description: A single registration request.
    put:
      tags:
      - New Device Requests
      summary: Accept or Reject a New Device Request
      operationId: updateNewDeviceRequest
      requestBody:
        required: true
        content:
          application/vnd.com.nsn.cumulocity.newDeviceRequest+json:
            schema:
              $ref: '#/components/schemas/NewDeviceRequest'
      responses:
        '200':
          description: Registration request updated.
    delete:
      tags:
      - New Device Requests
      summary: Delete a New Device Request
      operationId: deleteNewDeviceRequest
      responses:
        '204':
          description: Registration request deleted.
components:
  schemas:
    NewDeviceRequest:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
          - WAITING_FOR_CONNECTION
          - PENDING_ACCEPTANCE
          - ACCEPTED
        self:
          type: string
          format: uri
        creationTime:
          type: string
          format: date-time
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    bootstrapAuth:
      type: http
      scheme: basic
      description: HTTP Basic with the tenant-wide bootstrap user (devicebootstrap).