POST
/
api
/
v1
/
client
/
teams
/
{teamId}
/
verification
/
verify
Verify License
curl --request POST \
  --url https://app.lukittu.com/api/v1/client/teams/{teamId}/verification/verify \
  --header 'Content-Type: application/json' \
  --data '{
  "licenseKey": "<string>",
  "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "productId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "challenge": "<string>",
  "version": "<string>",
  "hardwareIdentifier": "<string>",
  "branch": "<string>"
}'
{
  "data": {
    "license": {
      "ipLimit": 123,
      "hwidLimit": 123,
      "expirationType": "NEVER",
      "expirationStart": "CREATION",
      "expirationDate": "2023-11-07T05:31:56Z",
      "expirationDays": 123,
      "metadata": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ]
    },
    "customers": [
      {
        "email": "jsmith@example.com",
        "fullName": "<string>",
        "username": "<string>",
        "metadata": [
          {
            "key": "<string>",
            "value": "<string>"
          }
        ]
      }
    ],
    "products": [
      {
        "name": "<string>",
        "url": "<string>",
        "latestRelease": {
          "version": "<string>",
          "createdAt": "2023-11-07T05:31:56Z"
        },
        "metadata": [
          {
            "key": "<string>",
            "value": "<string>"
          }
        ]
      }
    ]
  },
  "result": {
    "timestamp": "2023-11-07T05:31:56Z",
    "valid": true,
    "details": "<string>",
    "code": "VALID",
    "challengeResponse": "<string>"
  }
}

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
licenseKey
string
required

Lukittu license key format: XXXXX-XXXXX-XXXXX-XXXXX-XXXXX where X is an uppercase letter (A-Z) or digit (0-9)

customerId
string<uuid>

Customer UUID (required if strict customers enabled)

productId
string<uuid>

Product UUID (required if strict products enabled)

challenge
string

Client-generated random string for request signing (no spaces allowed)

Maximum length: 1000
version
string

Software version identifier (no spaces allowed)

Required string length: 3 - 255
hardwareIdentifier
string

Unique hardware identifier for client device (no spaces allowed)

Required string length: 10 - 1000
branch
string

Product branch name

Required string length: 2 - 255

Response

Successful license verification response

data
object
required

Response data

result
object
required