License Module API resetLicenseHWID

From Openprovider API documentation

(Difference between revisions)
Jump to: navigation, search
(Created page with '==License Module > Search Plesk | Virtuozzo License== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |Licenses |- style="background-color:#EEEEE…')
(License Module > Search Plesk | Virtuozzo License)
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>

Revision as of 06:03, 13 September 2018

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