License Module API resetLicenseHWID
From Openprovider API documentation
(Difference between revisions)
(→License Module > Search Plesk | Virtuozzo License) |
(→Using PHP class) |
||
Line 28: | Line 28: | ||
->setAuth(array('username' => 'username', 'password' => 'password')) | ->setAuth(array('username' => 'username', 'password' => 'password')) | ||
->setArgs(array( | ->setArgs(array( | ||
- | 'product' => virtuozzo | + | 'product' => 'virtuozzo' |
- | 'keyId' => 74351940 | + | 'keyId' => '74351940' |
) | ) | ||
)); | )); |
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>