API Module SSL retrieveReissueApproverEmailListSslCertRequest
From Openprovider API documentation
(Difference between revisions)
(→Module SSL certificates > Retrieve Reissue Approver Email List) |
|||
| (2 intermediate revisions not shown) | |||
| Line 6: | Line 6: | ||
|- style="background-color:#EEEEEE;" | |- style="background-color:#EEEEEE;" | ||
|'''Command name''' | |'''Command name''' | ||
| - | | | + | |retrieveReissueApproverEmailListSslCertRequest |
|- | |- | ||
|'''Use''' | |'''Use''' | ||
| Line 13: | Line 13: | ||
|'''Input''' | |'''Input''' | ||
| | | | ||
| - | *''' | + | *'''id''' - order Id in the Openprovider |
| - | + | ||
|- style="vertical-align:top;" | |- style="vertical-align:top;" | ||
|'''Output''' | |'''Output''' | ||
Current revision as of 06:14, 23 August 2018
Contents |
Module SSL certificates > Retrieve Reissue Approver Email List
| Module | SSL certificates |
| Command name | retrieveReissueApproverEmailListSslCertRequest |
| Use | Returns a list of allowed approver e-mail addresses to reissue this certificate order |
| Input |
|
| Output |
|
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('retrieveReissueApproverEmailListSslCertRequest')
->setAuth(array('username' => 'username', 'password' => 'password'))
->setArgs(array(
'id' => 12345,
));
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>
<retrieveReissueApproverEmailListSslCertRequest>
<id>12345</id>
</retrieveReissueApproverEmailListSslCertRequest>
</openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<reply>
< code>0</code>
<desc />
<data>
<array>
<item>admin@openprovider.com</item>
<item>domreg@openprovider.com</item>
</array>
</data>
</reply>
</openXML>