GET
/
api
/
v1
/
dev
/
teams
/
{teamId}
/
licenses
List Licenses
curl --request GET \
  --url https://app.lukittu.com/api/v1/dev/teams/{teamId}/licenses \
  --header 'Authorization: Bearer <token>'
{
"data": {
"licenses": [
{
"id": "456e7890-e89b-12d3-a456-426614174111",
"licenseKey": "ABCD1-EFGH2-IJKL3-MNOP4-QRST5",
"expirationType": "NEVER",
"suspended": false,
"ipLimit": null,
"hwidLimit": null,
"metadata": [],
"teamId": "123e4567-e89b-12d3-a456-426614174000",
"createdByUserId": "789e0123-e89b-12d3-a456-426614174222",
"createdAt": "2023-09-15T14:30:00Z",
"updatedAt": "2023-09-15T14:30:00Z",
"lastActiveAt": null
}
],
"hasNextPage": false
},
"result": {
"timestamp": "2023-09-15T14:30:00Z",
"valid": true,
"details": "Licenses retrieved successfully"
}
}

Authorizations

Authorization
string
header
required

API key authentication for development endpoints.

You can create API keys in your team's settings on the Lukittu dashboard. Include the API key in the Authorization header as: Bearer YOUR_API_KEY

Example:

Authorization: Bearer lukittu_api_key_abc123def456...

Path Parameters

teamId
string<uuid>
required

Your team's UUID. You can find this value in your team's settings on the Lukittu dashboard.

Query Parameters

page
integer
default:1

Page number for pagination (1-based)

Required range: x >= 1
pageSize
enum<integer>
default:25

Number of items per page

Available options:
10,
25,
50,
100
sortColumn
enum<string>
default:createdAt

Column to sort by

Available options:
createdAt,
updatedAt
sortDirection
enum<string>
default:desc

Sort direction

Available options:
asc,
desc
productIds
string

Comma-separated list of product UUIDs to filter by

customerIds
string

Comma-separated list of customer UUIDs to filter by

Response

200
application/json

Licenses retrieved successfully

The response is of type object.