This documentation has moved

XML API documentation can now be found at developer.openprovider.com. This page will remain available until September 2026, but will no longer be updated.

The XML API itself is not changing. Your existing integration continues to work.

API Module SSL retrieveReissueApproverEmailListSslCertRequest

From Openprovider API documentation

(Difference between revisions)
Jump to: navigation, search
Line 6: Line 6:
|- style="background-color:#EEEEEE;"
|- style="background-color:#EEEEEE;"
|'''Command name'''
|'''Command name'''
-
|retrieveApproverEmailListSslCertRequest
+
|retrieveReissueApproverEmailListSslCertRequest
|-
|-
|'''Use'''
|'''Use'''
Line 13: Line 13:
|'''Input'''
|'''Input'''
|
|
-
*'''domain'''
+
*'''id'''
-
*'''[[API Format SSL Product Ids|productId]]'''
+
|- style="vertical-align:top;"
|- style="vertical-align:top;"
|'''Output'''
|'''Output'''

Revision as of 06:12, 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
  • id
Output
  • list of e-mail addresses

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>
Views
Personal tools