Ascio Web Service v3

PHP 5 GetInvoice

Get an invoice by id.

GetInvoiceResponse GetInvoice(SecurityHeaderDetails $securityHeader,GetInvoiceRequest $request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
404Object not found
405Access denied
406Invalid ObjectClassName
501Syntax error in parameters or arguments

GetInvoice Request

Property
request

GetInvoiceResponse

PropertyDescription
GetInvoiceResult
InvoiceNoExample: 1
AmountExample: 1.1
VatPercentageExample: 1.1
Created
CreatedBy
Note
Currency
SalesLineGroups
ResultCodeExample: 1
ResultMessage
Errors

Used in Classes

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);
//GetInvoiceRequest

$request =  [
	"InvoiceNo" => 1
];
//GetInvoice

$getInvoice =  [
	"request" => $request
];
try{	
    $result = $client->getInvoice($getInvoice);
    echo "ResultCode : ".$result->GetInvoiceResult->ResultCode."\r\n";
    echo "ResultMessage : ".$result->GetInvoiceResult->ResultMessage."\r\n";
    if(is_array($result->GetInvoiceResult->Errors->string)) {
        echo "Errors:\r\n";
        foreach($result->GetInvoiceResult->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.