License Templates

Get

Roles: Administrator, LicenseManager

Retrieves a list of license templates for a specific product release.

get
Authorizations
Path parameters
productIdinteger · int32Required

product_id is the ID of the product.

releaseIdinteger · int32Required

release_id is the ID of the release.

Query parameters
selectstringOptional
filterstringOptional
sortstringOptional
takeinteger · int32Optional
skipinteger · int32Optional
Responses
200

Success

application/json
get
/v1/products/{productId}/releases/{releaseId}/license-templates
GET /v1/products/{productId}/releases/{releaseId}/license-templates HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "code": 1,
  "message": "text",
  "licenseTemplates": [
    {
      "id": 1,
      "name": "text",
      "code": "text",
      "format": "Xml",
      "licenseFileName": "text",
      "generateKeyInfo": true,
      "description": "text",
      "template": "text",
      "productId": 1,
      "signatureKeysId": 1,
      "releaseId": 1,
      "product": {
        "id": "text",
        "name": "text",
        "version": "text",
        "copyright": "text",
        "url": "text",
        "description": "text"
      },
      "components": [
        "text"
      ],
      "assemblies": [
        {
          "id": 1,
          "name": "text",
          "version": "text",
          "culture": "text",
          "publicKeyToken": "text",
          "mappingFileId": 1,
          "debugSymbolsKey": "text"
        }
      ],
      "fields": [
        {
          "name": "text",
          "value": "text"
        }
      ],
      "features": [
        {
          "id": "text",
          "name": "text",
          "description": "text",
          "expireDate": "text",
          "key": "text",
          "data": "text"
        }
      ],
      "restrictions": [
        {
          "id": "text",
          "name": "text",
          "expireDate": "text",
          "properties": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        }
      ]
    }
  ],
  "totalLicenseTemplatesCount": 1
}

Last updated