v1

latestOpenAPI 3.1.02026-07-2489171167.4 KB
CIs

Get a List of CI Types

Retrieve a list of CI types.

get/cis/types

Query parameters

limitinteger

The number of items to display per page. The default is 100, and you can have up to 500.

offsetinteger

The offset for pagination. Calculated as (page - 1) * limit (page starts at 1).

querystring

Query to search entities.

Response

A list of CI types.

limitinteger

The number of items that are returned per page

offsetinteger

The offset used for pagination.

totalinteger

The total number of elements across all pages.

Example response

{
  "limit": 20,
  "total": 50,
  "data": [
    {
      "id": 5,
      "name": "Asset",
      "description": "System Asset (Workstation, Server, Laptop, Printer, PDA, Other)"
    }
  ]
}