Cumulocity Asset Models API

The Asset Models API from Cumulocity — 2 operation(s) for asset models.

Operations 5

GET /service/dtm/asset-models List Asset Models #
POST /service/dtm/asset-models Create an Asset Model #
GET /service/dtm/asset-models/{id} Retrieve an Asset Model #
PUT /service/dtm/asset-models/{id} Update an Asset Model #
DELETE /service/dtm/asset-models/{id} Delete an Asset Model #

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-asset-models-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-asset-models-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cumulocity Digital Twin Manager Asset Models API
  version: 2025.1
  description: 'Model real-world assets and their hierarchies with strongly-typed asset models, custom properties,

    and computed smart-function values. Asset instances reference the underlying Cumulocity managed objects

    so measurements and alarms automatically roll up.

    '
servers:
- url: https://{tenant}.cumulocity.com
  variables:
    tenant:
      default: example
security:
- basicAuth: []
- bearerAuth: []
tags:
- name: Asset Models
paths:
  /service/dtm/asset-models:
    get:
      tags:
      - Asset Models
      summary: List Asset Models
      operationId: listAssetModels
      responses:
        '200':
          description: A collection of asset models.
    post:
      tags:
      - Asset Models
      summary: Create an Asset Model
      operationId: createAssetModel
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssetModel'
      responses:
        '201':
          description: Asset model created.
  /service/dtm/asset-models/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Asset Models
      summary: Retrieve an Asset Model
      operationId: getAssetModel
      responses:
        '200':
          description: A single asset model.
    put:
      tags:
      - Asset Models
      summary: Update an Asset Model
      operationId: updateAssetModel
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssetModel'
      responses:
        '200':
          description: Asset model updated.
    delete:
      tags:
      - Asset Models
      summary: Delete an Asset Model
      operationId: deleteAssetModel
      responses:
        '204':
          description: Asset model deleted.
components:
  schemas:
    AssetModel:
      type: object
      properties:
        id:
          type: string
        self:
          type: string
          format: uri
        name:
          type: string
        description:
          type: string
        icon:
          type: string
        properties:
          type: array
          items:
            type: object
            properties:
              key:
                type: string
              label:
                type: string
              type:
                type: string
                enum:
                - TEXT
                - NUMBER
                - BOOLEAN
                - DATE
                - ENUM
                - REFERENCE
              required:
                type: boolean
              default: {}
        allowedSubtypes:
          type: array
          items:
            type: string
        smartFunctions:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              expression:
                type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT