License Module API resetLicenseHWID

From Openprovider API documentation

Jump to: navigation, search

Contents

License Module > Search Plesk | Virtuozzo License

Module Licenses
Command name resetLicenseHWID
Use Resets Hardware ID bind of a license
Input
  • product plesk | virtuozzo
  • keyID license ID
Output
  • 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>
    <code>0</code>
    <desc></desc>
  </reply>
</openXML>
Views
Personal tools