Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 3.37 KB

renewsubscriptionhttp.md

File metadata and controls

42 lines (31 loc) · 3.37 KB

RenewSubscriptionHttp

Description

Renews a subscription. When a subscription is renewed, each activated license is automatically reactivated on the server and a new computer-bound key is generated with a new expiry date. When customers reactivate their license, they receive the new computer-bound key with the new expiry date, thus extending their subscription period.

To invoke this method via a URL, append this function's name to the URL of the QLM License Server and add the required arguments.

{% code overflow="wrap" %}

https://yourserver/yourvirtualdirectory/qlmservice.asmx/RenewSubscriptionHttp?is_avkey=[activationKey]&is_vendor=[vendor name]&is_expdate=[date]&is_user=[user]&is_pwd=[pwd]

{% endcode %}

Arguments

Argument Description
is_avkey activation key
is_expdate date at which the license will expire. You must specify either is_expdate or is_expduration
is_expduration duration in days after which the license will expire. You must specify either is_expdate or is_expduration
is_logRelease flag that determines whether the release will be logged in the history table. If you are using cloud based floating licenses, you should set this argument to false to prevent bloating of the history table.
is_pp Product Properties to set
is_pwd password defined for the selected eCommerce provider (optional)
is_user username defined for the selected eCommerce provider (optional)
is_vendor One of the supported vendors

Remarks

The syntax for setting a product property is:

&is_pp=<category>.<name>::value::expiryDate||<category>.<name>::value::expiryDate

Example:

{% code overflow="wrap" %}

https://quicklicensemanager.com/qlmdemo/QlmLicenseServer/qlmservice.asmx/RenewSubscriptionHttp?is_vendor=fastspring&is_expduration=23&is_pp=quality.module_qa::2017-12-31||quality.module_control::true

{% endcode %}