POST
/
api
/
v1
/
client
/
teams
/
{teamId}
/
verification
/
heartbeat
curl --request POST \
  --url https://app.lukittu.com/api/v1/client/teams/{teamId}/verification/heartbeat \
  --header 'Content-Type: application/json' \
  --data '{
  "licenseKey": "ABCD1-EFGH2-IJKL3-MNOP4-QRST5",
  "hardwareIdentifier": "ABC123DEF456GHI789"
}'
{
  "data": {
    "license": {
      "ipLimit": 5,
      "hwidLimit": 3,
      "expirationType": "NEVER"
    }
  },
  "result": {
    "timestamp": "2023-09-15T14:30:00Z",
    "valid": true,
    "details": "Heartbeat successful",
    "code": "VALID"
  }
}

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 heartbeat response

The response is of type object.