Download OpenAPI specification:Download
The Single Point of statistic Information about the existence of Digital Twins and their Aspects, Groups etc.
The API offers currently one form of authentication:
Returns the statistics information for the tenant
tenantId required | string <uuid> Unique identifier of the owning tenant. |
{- "twinCount": 50,
- "groupCount": 50,
- "aspectCount": 50,
- "aspectTemplateCount": 50,
- "httpEndpointCount": 50,
- "mqttEndpointCount": 50,
- "shellCount": 50,
- "timestamp": "2021-01-01T00:00:00.000Z"
}
If no query string is given, retrieve all group statistics for the tenant. If a query string is given, this is a RQL query on group statistic properties. By default the page size is limited to 50 items. The maximum page size is limited to 500 items.
Example RQL queries:
filter=in(id, 1, 2, 3)
More information about RQL usage in Digital Twin Registry can be found in the Documentation.
tenantId required | string <uuid> Unique identifier of the owning tenant. |
select | string Define an RQL select option, read more |
filter | string Define an RQL filter query, read more |
option | string Define an RQL sort option, read more |
cursor | string set cursor to nextCursor returned by the previous call to list items in the next page.. |
limit | integer <int32> [ 0 .. 500 ] Default: 500 the size of the requested page. Defaults to |
{- "items": [
- {
- "id": "5821L",
- "twinCount": 50,
- "timestamp": "2021-01-01T00:00:00.000Z"
}
], - "nextCursor": "string",
- "itemCount": 0
}