API Commands
[All Commands]

Command: Get_Certificate



Command Get_Certificate


Get certificate data

Input Parameters ($params):

int orderid Return value of Certificate_Request order

Sample:


<?php

$client 
= new SoapClient(
    
null
    array(
        
"location" => "https://PRODUCTION/cmd.php",
        
"uri"      => "http://PRODUCTION/soap"
    
)
);

$params = array ( 
    
"data" => array (
        
"login"    => "demo",
        
"password" => "password",
    )
);

$response $client->__call("Login",$params);

$token $response["data"]["ssid"];


$params = array (
    
"data" => array (
        
"ssid"    => $token,
        
"orderid" => 24
    
)
);

$response $this->client->__call("Get_Certificate"$params);

?>
OUTPUT: [status] => ok [data] => Array ( [certificate] => ... [expire] => 2016-01-01 [domain] => domain.or.af [type] => rapidssl )

API Manual - version from 2023-05-12 12:15:50