List all organization activations

Returns a list of organization activations. The organization activations are returned sorted by creation date in ascending order.

GET/v3/organizations/{organizationId}/activations
JWT
organization:activation:read

Parameters

NameTypeInDescription
organizationId*stringpath
includearrayquery
licenseIdobjectqueryUnique identifier for the license.
releaseVersionobjectqueryRelease version associated with the activation.
osobjectqueryOs used for activation.
location.countryCodeobjectqueryCountry code for the activation.
lastSyncedAtobjectqueryActivations last synced at.
license.keyobjectqueryLicense key.
userIdstringqueryUser id.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation
updatedAtobjectqueryDate of last update
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "os": "windows",
    "osVersion": "string",
    "hostname": "string",
    "location": {
      "ipAddress": "string",
      "countryCode": "string",
      "countryName": "string",
      "regionCode": "string",
      "regionName": "string",
      "city": "string",
      "zipCode": "string",
      "timeZone": "string",
      "latitude": 0.1,
      "longitude": 0.1
    },
    "vmName": "string",
    "container": true,
    "appVersion": "string",
    "releaseVersion": "string",
    "releaseChannel": "string",
    "releasePlatform": "string",
    "offline": true,
    "productId": "string",
    "expiresAt": "2019-08-24T14:15:22Z",
    "licenseId": "string",
    "lastSyncedAt": "2019-08-24T14:15:22Z",
    "meterAttributes": [
      {
        "name": "string",
        "uses": 0
      }
    ],
    "leaseExpiresAt": "2019-08-24T14:15:22Z",
    "user": {
      "id": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "name": "string",
      "firstName": "string",
      "lastName": "string",
      "email": "string",
      "role": "string",
      "twoFactorEnabled": true,
      "googleSsoEnabled": true,
      "lastLoginAt": "2019-08-24T14:15:22Z",
      "userGroups": [
        {
          "id": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string"
        }
      ]
    }
  }
]