List all products

Returns a list of products which are associated with the currently authenticated user.

GET/v3/me/products
JWT

Parameters

NameTypeInDescription
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"
    ]
  }
]