Ascio Web Service v2
Class RegistrantVerificationDetails
Property | Description |
---|---|
VerifiedBy | Please enter the IP-address of the confirming registrant here. It can be logged, when the end-customer enters the confirmation website. Example: "1.1.1.1" |
VerificationDate | |
Messages |
<?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,[ "trace" => 1, "soap_version" => SOAP_1_1)];
//Attachment
$attachment = [
"Data" => "DataTest",
"FileName" => "anything.jpg"
];
//ArrayOfAttachment
$attachments = [
"Attachment" => [$attachment]
];
//Message
$message = [
"Attachments" => $attachments,
"Body" => "BodyTest",
"Created" => "CreatedTest",
"FromAddress" => "administrator@ascio-test-domain.com",
"Subject" => "base64-encoded or 7 Bit ASCII",
"ToAddress" => "ToAddressTest",
"Type" => "Message_to_Partner"
];
//ArrayOfMessage
$messages = [
"Message" => [$message]
];
//RegistrantVerificationDetails
$registrantVerificationDetails = [
"VerifiedBy" => "1.1.1.1",
"VerificationDate" => "VerificationDateTest",
"Messages" => $messages
];
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.
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.