Skip to main content
GET
/
domain
/
v1beta1
/
expiredLicenseUsers
cURL
curl --request GET \
  --url https://aodocs.altirnao.com/api/domain/v1beta1/expiredLicenseUsers \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "kind": "<string>",
  "licensedUserList": [
    {
      "archived": true,
      "email": "<string>",
      "kind": "<string>",
      "lastActivity": "2023-11-07T05:31:56Z",
      "lastEdit": "2023-11-07T05:31:56Z",
      "lastLogin": "2023-11-07T05:31:56Z",
      "lastView": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "orgUnitPath": "<string>",
      "overDomainLimit": true,
      "revokeCooldownDate": "2023-11-07T05:31:56Z",
      "suspended": true,
      "thumbnailPictureUrl": "<string>"
    }
  ],
  "maxSeats": 123,
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

domain
string

The domain

securityCode
string

The security code

limit
integer<int32>
default:50

The maximum number of licensed users per page. (Default: 50)

order
string

The attribute ('email', 'name', 'lastLogin', 'lastActivity' or 'revokeCooldownDate') used to sort the expired licensed users and the order ('asc' or 'desc'), e.g. 'lastActivity desc'. Default order is: 'revokeCooldownDate asc'.

nextPageToken
string

DEPRECATED. Use pageToken instead.

pageToken
string

The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.

Response

200 - application/json

A ApiLicensedUserList response

count
integer<int32>
kind
string
licensedUserList
object[]
maxSeats
integer<int32>

The maximum number of licensed users (0 means unlimited)

nextPageToken
string