List all products

Returns a list of products which are associated with the organization through its licenses.

GET/v3/organizations/{organizationId}/products
JWT
organization:product:read

Parameters

NameTypeInDescription
organizationId*stringpathUnique identifier for the organization.
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",
    "displayName": "string",
    "iconUrl": "string",
    "description": "string",
    "releasePlatforms": [
      "string"
    ],
    "releaseChannels": [
      "string"
    ]
  }
]