Skip to main content
GET
/
v1
/
licenses
List
curl --request GET \
  --url https://{defaultHost}/v1/licenses \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/licenses"
  },
  "data": [
    {
      "id": "d2f7e969-7ec1-4a36-8c89-062823558992",
      "object": "license",
      "activations_count": 0,
      "activation_limit": null,
      "key": "d9df85fc-1e79-4bd0-b355-8140c770f83c",
      "revokes_at": null,
      "status": "inactive",
      "customer": "8333f59a-88b4-4c96-9e06-07526c2aa3fc",
      "purchase": "4a751c8f-e79f-4dde-8852-cc70a8f8a67f",
      "created_at": 1767909711,
      "updated_at": 1767909711
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

customer_ids[]
string[]

Only return objects that belong to the given customers.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

product_ids[]
string[]

Only return objects that belong to the given products.

purchase_ids[]
string[]

Only return objects that belong to the given purchases.

query
string

The query to be used for full text search of this collection.

revoked
boolean

Only return objects that are revoked or not revoked.

sort
string

The sorting column and order to be used for this collection. Available sorting columns for this endpoint are activations_count, created_at, and updated_at.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.