.pdf)
WHM Plugins
listcrts function from within your custom script:
/xml-api/listcrts function call name, plus the required variables (see below), to a URL which includes the address of your server.
example.com, you would include the following string in your script: https://example.com:2087/xml-api/listcrts
listcrts function from within your custom script:
/json-api/listcrts function call name, plus the required variables (see below), to a URL which includes the address of your server.
example.com, you would include the following string in your script: https://example.com:2087/json-api/listcrts
listcrts function. https://example.com:2087/xml-api/listcrts in WebHost Manager will produce output similar to the following:
<listcrts>
<crt>
<domain>example.com</domain>
</crt>
<crt>
<domain>example2.com</domain>
</crt>
<crt>
<domain>example3.com</domain>
</crt>
<crt>
<domain>example4.com</domain>
</crt>
</listcrts>
https://example.com:2087/json-api/listcrts in WebHost Manager will produce output similar to the following:
{
"crt":[
{
"domain":"example.com"
},
{
"domain":"example2.com"
},
{
"domain":"example3.com"
},
{
"domain":"example4.com"
},
]
}