CreateActivationKeyWithExpiryDateEx4
Description
Creates an activation key on the License Server.
Note that to call this function, you must:
Enable the Server Property enableCreateActivationKey
Set the AdminEncryptionKey
Call DefineProduct
Parameters
Parameter | Type | Description |
---|---|---|
webServiceUrl | string | URL to the QLM License Server. |
string | email address to associate with to the license key - can be empty | |
features | string | Semi comma separated list of feature sets and their corresponding enabled features. Example: 0:1;1:2;2:3;3:6 - enables feature 1 in feature set 0, feature 2 in feature set 1, feature 1+2 (3) in feature set 4 and features 1+2+3 (6) in feature set 3. |
numKeysToCreate | int | the number of licenses to create. Use this option to create large batches of license keys. |
numSeats | int | the number of licenses to embed in the key. This controls how many activations are allowed per key. |
numFloatingSeats | int | the number of floating seats for concurrent licensing (requires QLM Enterprise). |
useMultipleActivationsKey | bool | if set to true and quantity > 1, one license key will be generated for all required licenses. The number of licenses will be embedded in the license key |
qlmVersion | string | version of the QLM Engine |
vendor | string | eCommerce vendor to use when generating the key |
userData1 | string | user data to associate with the license key |
affiliateID | string | ID of affiliate |
expiryDate | DateTime | expiry date of the key. Set this value to DateTime.MinValue to not set an expiry date. |
expiryDuration | int | Expiry duration of the key. Set this value to -1 to not set an expiry duration. |
maintenance | bool | set to true to enable the maintenance plan for this license |
generic | bool | set to true to create a generic license key. Generic license keys are designed for enterprise customers who purchase hundreds of licenses and do not want to have to activate licenses on every single computer. They activate a single license and get back a Generic Computer Key. Then on every other computer in the organization, they use the Generic Computer Key (not recommended). |
licenseModel | set the one of the allowed values: permanent | trial | subscription | |
response | string | XML fragment containing the result of the call. |
Response XML format
Example error response
Remarks
Use ParseResults to interpret the results of the call and load the returned data into an ILicenseInfo object.
Last updated