Ascio Web Service v2
Class QueueItem
Property | Description |
---|---|
Attachments | |
DomainHandle | |
DomainName | Example: "ascio-test-domain" |
Msg | |
MsgId | Example: 1 |
MsgType | |
OrderId | Example: "TEST123456" |
OrderStatus | |
StatusList |
<?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]
];
//CallbackStatus
$callbackStatus = [
"Message" => "MessageTest",
"Status" => "StatusTest"
];
//ArrayOfCallbackStatus
$statusList = [
"CallbackStatus" => [$callbackStatus]
];
//QueueItem
$queueItem = [
"Attachments" => $attachments,
"DomainHandle" => "DomainHandleTest",
"DomainName" => "ascio-test-domain".time().".com",
"Msg" => "MsgTest",
"MsgId" => 1,
"MsgType" => "Message_to_Partner",
"OrderStatus" => "NotSet",
"StatusList" => $statusList
];
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.