v2

latestOpenAPI 3.0.0Commercial2026-07-2649110209.4 KB
Licenses

List license instances.

Retrieve a paginated list of instances (activations) for a license key. Use an instance id from this list to deactivate it via the deactivate endpoint.

get/v1/licenses/{id}/instances

Path parameters

idstring required

The unique identifier of the license key

Query parameters

page_numbernumber
Example:1

The page number for pagination.

page_sizenumber
Example:10

The number of items per page.

Response

Successfully retrieved license instances

Example response

{
  "items": [
    {
      "object": "license-instance",
      "name": "My Customer License Instance",
      "status": "active",
      "created_at": "2023-09-13T00:00:00Z"
    }
  ],
  "pagination": {
    "current_page": 1,
    "next_page": 2
  }
}