POST
/
api
/
v1
/
client
/
teams
/
{teamId}
/
verification
/
verify
curl --request POST \
--url https://app.lukittu.com/api/v1/client/teams/{teamId}/verification/verify \
--header 'Content-Type: application/json' \
--data '{
"licenseKey": "ABCD1-EFGH2-IJKL3-MNOP4-QRST5"
}'
{
"data": {
"license": {
"ipLimit": 5,
"hwidLimit": 3,
"expirationType": "DURATION",
"expirationStart": "ACTIVATION",
"expirationDays": 30,
"metadata": [
{
"key": "tier",
"value": "premium"
}
]
},
"customers": [
{
"email": "customer@example.com",
"fullName": "John Doe"
}
],
"products": [
{
"name": "My Software",
"url": "https://example.com",
"latestRelease": {
"version": "1.2.3",
"createdAt": "2023-09-15T14:30:00Z"
}
}
]
},
"result": {
"timestamp": "2023-09-15T14:30:00Z",
"valid": true,
"details": "License is valid and active",
"code": "VALID",
"challengeResponse": "signedChallengeResponse123"
}
}

Path Parameters

teamId
string<uuid>
required

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

Body

application/json

Response

200
application/json

Successful license verification response

The response is of type object.