7thstreetweb / intacct-sdk-php-ar-aging
Accounts Receivable Aging Functionality
Package info
github.com/philbirnie/Intacct_AR_Aging
Type:project
pkg:composer/7thstreetweb/intacct-sdk-php-ar-aging
v1.0.3
2020-03-09 16:28 UTC
Requires
- php: >=7.2
- intacct/intacct-sdk-php: ^2.1.1
This package is auto-updated.
Last update: 2026-02-10 05:46:13 UTC
README
Module utilized with Intacct PHP SDK.
Example Usage:
/** @var ClientConfig $clientConfig */ $clientConfig = new ClientConfig(); $client = new OnlineClient($clientConfig); /** @var ArAging $accountsReceivableRequest **/ $accountsReceivableRequest = new ArAging(); $accountsReceivableRequest->setAgingPeriods('0-'); $accountsReceivableRequest->setLocationId('03'); $accountsReceivableRequest->setShowDetails(true); $response = $client->execute($accountsReceivableRequest);