Return domain AutoSSL pending queue information

This function returns the most recent AutoSSL pending queue information for a specific domain.

SecurityBasicAuth
Request
query Parameters
domain
required
string <domain>

The domain for which to check the AutoSSL pending queue.

Note:

You can only enter one domain when you call this function. To check the most recent list of all AutoSSL queued domains that a user owns, read our get_autossl_pending_queue_for_user documentation.

Example: domain=example.com
Responses
200

HTTP Request was successful.

Response Schema: application/json
object
object
get/get_autossl_pending_queue_for_domain
Request samples
whmapi1 --output=jsonpretty \
  get_autossl_pending_queue_for_domain \
  domain='example.com'
Response samples
application/json
{
  • "data": {
    • "queue_by_domain": [
      • {
        • "dcv_methods": [
          • "http",
          • "dns"
          ],
        • "domains": [
          • "example.com",
          • "www.example.com"
          ],
        • "last_poll_time": "2017-08-19T13:27:03.000Z",
        • "order_item_id": "12345678",
        • "request_time": "2017-08-12T21:02:56.000Z",
        • "vhost_name": "example.com"
        }
      ]
    },
  • "metadata": {
    • "command": "get_autossl_pending_queue_for_domain",
    • "reason": "OK",
    • "result": 1,
    • "version": 1
    }
}