GET
/
api
/
v1
/
dev
/
teams
/
{teamId}
/
licenses
/
id
/
{licenseId}
/
hwid
List License Hardware Identifiers
curl --request GET \
  --url https://app.lukittu.com/api/v1/dev/teams/{teamId}/licenses/id/{licenseId}/hwid \
  --header 'Authorization: Bearer <token>'
{
"data": {
"hwids": [
{
"id": "789e0123-e89b-12d3-a456-426614174333",
"identifier": "HWID-ABC123-XYZ789",
"status": "active",
"forgotten": false,
"licenseId": "456e7890-e89b-12d3-a456-426614174111",
"teamId": "123e4567-e89b-12d3-a456-426614174000",
"lastSeenAt": "2023-09-15T14:25:00Z",
"createdAt": "2023-09-15T10:00:00Z",
"updatedAt": "2023-09-15T14:25:00Z"
},
{
"id": "890e1234-e89b-12d3-a456-426614174444",
"identifier": "HWID-DEF456-UVW012",
"status": "inactive",
"forgotten": false,
"licenseId": "456e7890-e89b-12d3-a456-426614174111",
"teamId": "123e4567-e89b-12d3-a456-426614174000",
"lastSeenAt": "2023-09-14T08:00:00Z",
"createdAt": "2023-09-14T08:00:00Z",
"updatedAt": "2023-09-14T08:00:00Z"
}
],
"totalResults": 2,
"hasNextPage": false
},
"result": {
"timestamp": "2023-09-15T14:30:00Z",
"valid": true,
"details": "Hardware identifiers 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.

licenseId
string<uuid>
required

The unique identifier (UUID v4) of the license.

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:lastSeenAt

Column to sort by

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

Sort direction

Available options:
asc,
desc
showForgotten
boolean
default:false

Whether to include forgotten hardware identifiers

Response

200
application/json

Hardware identifiers retrieved successfully

The response is of type object.