Retrieve a product

Retrieves the details of an existing product.

GET/v3/products/{id}
JWT
product:read

Parameters

NameTypeInDescription
id*stringpathUnique identifier for the product.

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