Ascio Web Service v3
Class GetAccountTransactionsRequest
| Property | Description |
|---|---|
| AccountTransactionType | |
| InvoiceNo | Example: 1 |
| CreditNo | Example: 1 |
| FromDate | |
| ToDate | |
| Note | |
| PageInfo |
<?php
namespace ascio\v3\examples;
require("../service/autoload.php");
require("../../lib/AscioConfig.php");
use ascio\v3 as ascio;
$pageInfo = new ascio\PagingInfo();
$pageInfo->setPageIndex(1);
$pageInfo->setPageSize(1);
$getAccountTransactionsRequest = new ascio\GetAccountTransactionsRequest();
$getAccountTransactionsRequest->setAccountTransactionType(ascio\AccountTransactionType::Invoice);
$getAccountTransactionsRequest->setInvoiceNo(1);
$getAccountTransactionsRequest->setCreditNo(1);
$getAccountTransactionsRequest->setFromDate(new \DateTime());
$getAccountTransactionsRequest->setToDate(new \DateTime());
$getAccountTransactionsRequest->setNote("NoteTest");
$getAccountTransactionsRequest->setPageInfo($pageInfo);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.
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.