Return account DCV issues

This function returns the list of the latest Domain Control Validation (DCV) problems for a cPanel user.

SecurityBasicAuth
Request
query Parameters
username
required
string <username>

The user for whom to poll the DCV status.

Example: username=username
Responses
200

HTTP Request was successful.

Response Schema: application/json
object
object
get/get_autossl_problems_for_user
Request samples
whmapi1 --output=jsonpretty \
  get_autossl_problems_for_user \
  username='username'
Response samples
application/json
{
  • "data": {
    • "problems_by_domain": [
      • {
        • "domain": "doesnotexist.example.com",
        • "log": "2017-09-07T03:51:01.000Z",
        • "problem": "doesnotexist.example.com does not resolve to any IPv4 addresses on the internet.",
        • "time": "2017-08-12T21:02:56.000Z"
        }
      ]
    },
  • "metadata": {
    • "command": "get_autossl_problems_for_user",
    • "reason": "OK",
    • "result": 1,
    • "version": 1
    }
}