List all products

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

GET/v3/products
JWT
product:read

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"
nameobjectqueryThe name of the product.
metadata.keyobjectqueryMetadata key associated with the product.
metadata.valueobjectqueryMetadata value associated with the product.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation
updatedAtobjectqueryDate of last update

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "name": "string",
    "displayName": "string",
    "description": "string",
    "publicKey": "string",
    "totalLicenses": 0,
    "totalTrialActivations": 0,
    "totalReleases": 0,
    "totalProductVersions": 0,
    "totalFeatureFlags": 0,
    "automatedEmails": [
      "string"
    ],
    "licenseTemplateId": "string",
    "trialPolicyId": "string",
    "iconUrl": "string",
    "metadata": [
      {
        "id": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "key": "string",
        "value": "string",
        "viewPermissions": [
          "activation"
        ],
        "visible": true
      }
    ]
  }
]