Ascio Web Service v2

PHP 5 CreateApprovalDocumentation

Uploads an IRTP verfication proof.

For owner-changes and transfers both parties, gaining and losing must be verified:

  • Send an e-mail to gaining and losing endcustomer. The e-mail contains a link with secret-id, and leads to the partner-verification website.
  • On the website the ip-addresses are stored.
  • The ip-addresses of the losing and gaining partner are sent to Ascio with then CreateApprovalDocumenetation command.
  • Ascio will not send any mails regarding IRTP to the losing and gaining party.
  • The IRTP replaces the Registrant Verification. If an IRTP process is completed, no Registrant Verification mail is sent.

Response CreateApprovalDocumentation(string $sessionId,int $msgId)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
404Object not found

CreateApprovalDocumentation Request

PropertyDescription
sessionIdExample: o58t9fjgw9bjarp6q7byv13e
approvalDocumentation

CreateApprovalDocumentationResponse

PropertyDescription
CreateApprovalDocumentationResult
documentationIdThe documentationId is used in the order.Documentation property.
PropertyValue
TypeIRTPApproval

PHP 5 example

<?php
$wsdl = "https://aws.demo.ascio.com/2012/01/01/AscioService.wsdl";
//$wsdl = "https://aws.ascio.com/2012/01/01/AscioService.wsdl";
$client = new SoapClient($wsdl,array( "trace" => 1, "soap_version" => SOAP_1_1));

//Attachment

$attachment =  [
	"Data" => "DataTest",
	"FileName" => "anything.jpg"
];
//ArrayOfAttachment

$attachments =  [
	"Attachment" => [$attachment]
];
//Extension

$extension =  [
	"Key" => "Title",
	"Value" => "Mr."
];
//Extension

$extension =  [
	"Key" => "Title",
	"Value" => "Mr."
];
//Extension

$extension =  [
	"Key" => "Title",
	"Value" => "Mr."
];
//Extension

$extension =  [
	"Key" => "Title",
	"Value" => "Mr."
];
//Extension

$extension =  [
	"Key" => "Title",
	"Value" => "Mr."
];
//Extensions

$extensions =  [
	"Extension" => [
	[
		"Key" => "LoosingOwnerApprovalIP",
		"Value" => "1.1.1.1"
	],
	[
		"Key" => "LoosingOwnerApprovalTimestamp",
		"Value" => "2016-12-06T22:09:07.707Z"
	],
	[
		"Key" => "GainingOwnerApprovalIP",
		"Value" => "1.1.1.1"
	],
	[
		"Key" => "GainingOwnerApprovalTimestamp",
		"Value" => "2016-12-06T22:09:07.707Z"
	],
	[
		"Key" => "IRTPOptOut",
		"Value" => false
	]
	]
];
//ApprovalDocumentation

$approvalDocumentation =  [
	"Type" => "IRTPApproval",
	"ObjectNames" => [
	],
	"Attachments" => $attachments,
	"Extensions" => $extensions
];
//CreateApprovalDocumentation

$createApprovalDocumentation =  [
	"sessionId" => env.getSessionId(),
	"approvalDocumentation" => $approvalDocumentation
];
try{	
    $result = $client->createApprovalDocumentation($createApprovalDocumentation);
    echo "ResultCode : ".$result->CreateApprovalDocumentationResult->ResultCode."\r\n";
    echo "ResultMessage : ".$result->CreateApprovalDocumentationResult->ResultMessage."\r\n";
    if(is_array($result->CreateApprovalDocumentationResult->Errors->string)) {
        echo "Errors:\r\n";
        foreach($result->CreateApprovalDocumentationResult->Errors->string as $key => $value) {
            echo " - " . $value."\r\n";
        }
    }
} catch(Exception $e) {
	echo $e->getMessage(); 
}

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