v1

latestOpenAPI 3.0.0Proprietary - Commercial Use Only2026-08-06172139621.6 KB
License

Get the list of licenses defined for the tenant.

Get the list of licenses defined for the tenant.

get/api/v2/licenses

Query parameters

page_numberinteger
Example:1

The number of the page requested.

page_size10 | 20 | 30
Example:10

The number of result items in a single response.

Response

Success

LicenseIdinteger required
Typestring

There are three license types; Continuous Annual, Continuous 60-day and AI Agent.

StartDatestring datetime

The date time the license starts.

EndDatestring datetime

The date time the license expires.

NumberOfRemainingEntitiesinteger nullable

The remaining valid entity count for this license.

NumberOfMaxEntitiesinteger nullable

The upper entity limit for this license.

RemainingSwapCountinteger

The number of remaining swap operations available for this license. A value of -1 indicates unlimited swaps.

TotalSwapCountinteger

The total number of swap operations permitted for this license. A value of -1 indicates unlimited swaps.

Example response

[
  {
    "LicenseId": 213,
    "Type": "ContinuousAnnual",
    "StartDate": "2021-09-29T16:47:36.527Z",
    "EndDate": "2022-09-29T16:47:36.527Z",
    "NumberOfRemainingEntities": 7,
    "NumberOfMaxEntities": 20,
    "RemainingSwapCount": 3,
    "TotalSwapCount": 10
  }
]