String GenerateCertificateID (string billingDetailsID)
Description |
Creates a new unique Certificate ID to be used when generating a new certificate signing request. Certificate status will be created. This method must be used in conjunction with the SubmitCertificateRequest method to complete request of a new certificate. |
Returns |
A V_XML formatted string containing the generated certificate ID. |
Client Certificate | not required |
Parameters
billingDetailsID:string |
Billing Group ID |
Additional Notes:
General Notes |
|
SOAP Request
POST /iVeriWebService/Service.asmx HTTP/1.1
Host: portal.nedsecure.co.za
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://iveri.com/GenerateCertificateID"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GenerateCertificateID xmlns="http://iveri.com/">
<billingDetailsID>string</billingDetailsID>
</GenerateCertificateID>
</soap:Body>
</soap:Envelope>
SOAP Response
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GenerateCertificateIDResponse xmlns="http://iveri.com/">
<GenerateCertificateIDResult>string</GenerateCertificateIDResult>
</GenerateCertificateIDResponse>
</soap:Body>
</soap:Envelope>