=head2 api_viewAutomationDetails Input structure: { "accountId": 5153184, "automationId": 298577, "divisionId": 677793 } Output structure: "autoStatusResponse": { "automationStatus": "INSTALL_VALIDATION_FAILED", "requestedOn": "1599716536705", "installSettings": { "installationType": "AUTO_INSTALL_AFTER_APPROVAL", "isAlwaysOn": false }, "userDetailsResponse": { "firstName": "CertCentral", "lastName": "Admin", "container": { "id": 677793, "name": "Cert Testing Inc." } } }, "autoOrderProgressResponse": { "csrGenResponse": { "csrProgress": "CSR_GENERATION_SUCCEEDED" }, "certInstallResponse": { "certInstallProgress": "INSTALL_VALIDATION_FAILED", "causeOfFailure": "Post install validation is unsuccessful, could be due to installation failure / scan failure", "solution": "Verify certificate manually on website and cancel this automation request if installed, otherwise retry. Contact customer support for additional help." }, "isRetryApplicable": true }, "certDetailsResponse": { "commonName": "cert-testing.com", "signatureHash": "", "orgDetails": { "name": "Cert Testing Inc.", "address": "2801 N Thanksgiving Way", "address2": "Suite 500", "city": "Lehi", "state": "Utah", "telephone": "801-701-9600" }, "sans": "", "automationProfileName": "22jul2020 01", "automationProfileId": 741.0, "automationProfileStatus": "ACTIVE", "productType": "SSL_SECURESITE_FLEX", "validityPeriod": "1Y" }, "isRequestApproval": false https://dev.digicert.com/en/certcentral-apis/automation-api/view-automation-details.html =cut sub api_viewAutomationDetails($self, %params) { $params{accountId} //= $self->account_id; $params{divisionId} //= $self->division_id; length $params{automationId} or croak "automationId required"; $self->_api_post("automation/viewAutomationDetails", \%params); }