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": "<string>",
  "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "productId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "challenge": "<string>",
  "version": "<string>",
  "deviceIdentifier": "<string>"
}'
{
  "data": {
    "license": {
      "ipLimit": 123,
      "seats": 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
required

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

Body

application/json

Response

200
application/json
Successful heartbeat response

The response is of type object.