Metaregistrar EPP documentation

All SSL commands: (create) (delete) (info) (renew) (reissue) (poll)

SSL Info

The SSL info command will give information back about the provisioning and status of the requested SSL certificate.

The command takes only one parameter: The certificate ID as returned from the ssl:create command

Example Info request

<?xml version="1.0" encoding="UTF-8"?> <epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:ssl="http://www.metaregistrar.com/epp/ssl-1.0"> <command> <info> <ssl:info> <ssl:certificateId>1</ssl:certificateId> </ssl:info> </info> <clTRID>5a27b8d011a0e</clTRID> </command> </epp>

Response to the Info request

The response is basically the same as the response to the ssl:create command. All the parameters are returned. <?xml version="1.0" encoding="UTF-8"?> <epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:ssl="http://www.metaregistrar.com/epp/ssl-1.0"> <response> <result code="1000"> <msg>Command completed successfully</msg> </result> <resData> <ssl:infData> <ssl:certificateId>1</ssl:certificateId> <ssl:provisioningId><![CDATA[f41c3cb5ebaf33b96843ee807f2644397648f41e]]></ssl:provisioningId> <ssl:commonName><![CDATA[example.com]]></ssl:commonName> <ssl:status><![CDATA[new]]></ssl:status> <ssl:created><![CDATA[2018-04-11 10:28:36 UTC]]></ssl:created> <ssl:modified><![CDATA[2018-04-11 10:28:36 UTC]]></ssl:modified> </ssl:infData> </resData> <trID> <clTRID>5acde3549c727</clTRID> <svTRID>MTR_808c0df0e210fa7f90dd348626560902258377cec3df</svTRID> </trID> </response> </epp>

Other responses

When the certificate is progressing through the process, other info statuses may be shown. The message hereunder shows a possible status that a certificate might have. <?xml version="1.0" encoding="UTF-8"?> <epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:ssl="http://www.metaregistrar.com/epp/ssl-1.0"> <response> <result code="1000"> <msg>Command completed successfully</msg> </result> <resData> <ssl:infData> <ssl:certificateId>1</ssl:certificateId> <ssl:provisioningId><![CDATA[108_e96147732a211fd1bfada6c08cca954f41ebe8fc]]></ssl:provisioningId> <ssl:commonName><![CDATA[example.com]]></ssl:commonName> <ssl:status><![CDATA[requested]]></ssl:status> <ssl:created><![CDATA[2018-04-12 08:13:36 UTC]]></ssl:created> <ssl:modified><![CDATA[2018-04-12 08:13:36 UTC]]></ssl:modified> <ssl:validation> <ssl:type><![CDATA[request]]></ssl:type> <ssl:status><![CDATA[pending]]></ssl:status> <ssl:statusMessage><![CDATA[waiting]]></ssl:statusMessage> </ssl:validation> <ssl:validation> <ssl:type><![CDATA[dcv]]></ssl:type> <ssl:status><![CDATA[pending]]></ssl:status> <ssl:statusMessage><![CDATA[waiting]]></ssl:statusMessage> <ssl:host> <ssl:name><![CDATA[example.com]]></ssl:name> <ssl:dcvType><![CDATA[FILE]]></ssl:dcvType> <ssl:status><![CDATA[pending]]></ssl:status> <ssl:statusMessage><![CDATA[waiting]]></ssl:statusMessage> <ssl:fileLocation><![CDATA[example.com/.well-known/pki-validation/e2808dd...0613821de8]]></ssl:fileLocation> <ssl:fileContents><![CDATA[hash_content_of_the_file]]></ssl:fileContents> </ssl:host> </ssl:validation> </ssl:infData> </resData> <trID> <clTRID>5acf173c1072d</clTRID> <svTRID>MTR_1a9795387c0dbbe86e2954f29b84a42ea147f45be69e</svTRID> </trID> </response> </epp>