Retrieves all licensed users data.
GET<your-unleash-url>/api/admin/licensed-users
Fetches an array of licensed users with date and count.
Responses
- 200
licensedUsersSchema
- application/json
- Schema
- Example (auto)
Schema
seatCountintegerrequired
The total number of licensed seats currently available for this Unleash instance.
Example:
25
licensedUsers objectrequired
{
"seatCount": 25,
"licensedUsers": {
"history": [
{
"date": "2024-10-01T00:00:00.000Z",
"count": 100
}
],
"current": 25
}
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/licensed-users' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>'
ResponseClear