License Module API resetLicenseHWID
From Openprovider API documentation
(Difference between revisions)
(Created page with '==License Module > Search Plesk | Virtuozzo License== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |Licenses |- style="background-color:#EEEEE…') |
(→Using PHP class) |
||
(One intermediate revision not shown) | |||
Line 20: | Line 20: | ||
*id | *id | ||
|} | |} | ||
+ | |||
+ | |||
+ | ==Examples== | ||
+ | ===Using PHP class=== | ||
+ | $request = new OP_Request; | ||
+ | $request->setCommand('resetLicenseHWID') | ||
+ | ->setAuth(array('username' => 'username', 'password' => 'password')) | ||
+ | ->setArgs(array( | ||
+ | 'product' => 'virtuozzo' | ||
+ | 'keyId' => '74351940' | ||
+ | ) | ||
+ | )); | ||
+ | |||
+ | ===Raw XML=== | ||
+ | ''Please note that newlines and leading spaces are added only for readability. Those whitespaces should be excluded from your XML command before sending it to Openprovider.'' | ||
+ | <?xml version="1.0" encoding="UTF-8"?> | ||
+ | <openXML> | ||
+ | <credentials> | ||
+ | <username>username</username> | ||
+ | <password>password</password> | ||
+ | </credentials> | ||
+ | <resetLicenseHWID> | ||
+ | <product>virtuozzo</product> | ||
+ | <keyId>74351940</keyId> | ||
+ | </resetLicenseHWID> | ||
+ | </openXML> | ||
+ | |||
+ | <?xml version="1.0" encoding="UTF-8"?> | ||
+ | <openXML> | ||
+ | <reply> | ||
+ | <nowiki><code>0</code></nowiki> | ||
+ | <desc></desc> | ||
+ | </reply> | ||
+ | </openXML> |
Current revision as of 08:16, 13 September 2018
Contents |
License Module > Search Plesk | Virtuozzo License
Module | Licenses |
Command name | resetLicenseHWID |
Use | Resets Hardware ID bind of a license |
Input |
|
Output |
|
Examples
Using PHP class
$request = new OP_Request; $request->setCommand('resetLicenseHWID') ->setAuth(array('username' => 'username', 'password' => 'password')) ->setArgs(array( 'product' => 'virtuozzo' 'keyId' => '74351940' ) ));
Raw XML
Please note that newlines and leading spaces are added only for readability. Those whitespaces should be excluded from your XML command before sending it to Openprovider.
<?xml version="1.0" encoding="UTF-8"?> <openXML> <credentials> <username>username</username> <password>password</password> </credentials> <resetLicenseHWID> <product>virtuozzo</product> <keyId>74351940</keyId> </resetLicenseHWID> </openXML>
<?xml version="1.0" encoding="UTF-8"?> <openXML> <reply> <code>0</code> <desc></desc> </reply> </openXML>