GET
/
api
/
v1
/
dev
/
teams
/
{teamId}
/
licenses
curl --request GET \
  --url https://app.lukittu.com/api/v1/dev/teams/{teamId}/licenses \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "hasNextPage": true,
    "licenses": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "licenseKey": "<string>",
        "ipLimit": 123,
        "metadata": [
          {
            "key": "<string>",
            "value": "<string>",
            "locked": true
          }
        ],
        "expirationType": "NEVER",
        "expirationStart": "CREATION",
        "expirationDate": "2023-11-07T05:31:56Z",
        "expirationDays": 123,
        "seats": 123,
        "suspended": true,
        "teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "createdByUserId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "lastActiveAt": "2023-11-07T05:31:56Z"
      }
    ]
  },
  "result": {
    "details": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "valid": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

teamId
string
required

Query Parameters

page
integer
default:
1
Required range: x > 1
pageSize
enum<integer>
default:
25
Available options:
10,
25,
50,
100
sortColumn
enum<string>
default:
createdAt
Available options:
createdAt,
updatedAt
sortDirection
enum<string>
default:
desc
Available options:
asc,
desc
productIds
string
customerIds
string

Response

200
application/json
Licenses retrieved successfully
data
object
result
object