Ascio Web Service v3

PHP 5 AutoInstallSslOrderRequest

Request an AutoInstallSSL token.

Makes the SSL installation automated with CPanel, Plesk

  • Generation of CSR and private keys
  • Approval process
  • Installation of the certificate on the webserver

Please choose you the ProductCode from this list: SSL Certificates

The php classes can be downloaded here: PHP-Classes

AutoInstallSslOrderRequestResponse AutoInstallSslOrderRequest(SecurityHeaderDetails $securityHeader,AutoInstallSslOrderRequestRequest $request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
501Syntax error in parameters or arguments
506Required attribute missing in request

AutoInstallSslOrderRequest Request

PropertyDescription
AutoInstallSsl
TypeExample: "owner"
PeriodExample: 1
TransactionComment
CommentsExample: "RegistrarTag"
Documentation
Options

Used in Classes

PropertyValue
OrderTypeRegister
requestAutoInstallSslOrderRequest

PHP 5 example

<?php
$wsdl = "https://aws.demo.ascio.com/v3/aws.wsdl";
//$wsdl = "https://aws.ascio.com/v3/aws.wsdl";
$client = new SoapClient($wsdl,array( "trace" => 1, "soap_version" => SOAP_1_1));
$credentials = array("Account"=> "myaccount", "Password" => "mypassword");
$header = new \SoapHeader("http://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
$client->__setSoapHeaders($header);
//AutoInstallSsl

$autoInstallSsl =  [
	"CommonName" => "ascio-test-domain.com",
	"ProductCode" => "positivessl",
	"Email" => $config->getEmail(),
	"SanCount" => 1,
	"ObjectComment" => "Example Object Comment"
];
//AutoInstallSslOrderRequest

$request =  [
	"Type" => "Register",
	"Period" => 1,
	"TransactionComment" => "TransactionCommentTest",
	"Comments" => "RegistrarTag",
	"AutoInstallSsl" => $autoInstallSsl
];
//CreateOrder

$createOrder =  [
	"request" => new SoapVar($request, SOAP_ENC_OBJECT, "AutoInstallSslOrderRequest", "http://www.ascio.com/2013/02","request","http://www.ascio.com/2013/02/AscioService")
];
try{	
    $result = $client->createOrder($createOrder);
    echo "ResultCode : ".$result->CreateOrderResult->ResultCode."\r\n";
    echo "ResultMessage : ".$result->CreateOrderResult->ResultMessage."\r\n";
    if(is_array($result->CreateOrderResult->Errors->string)) {
        echo "Errors:\r\n";
        foreach($result->CreateOrderResult->Errors->string as $key => $value) {
            echo " - " . $value."\r\n";
        }
    }
} catch(Exception $e) {
	echo $e->getMessage(); 
}

WSDL for AWS v3
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.