7thstreetweb / intacct-sdk-php-common
Intacct Common Filters and Helpers
Installs: 45
Dependents: 4
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=7.2
- intacct/intacct-sdk-php: ^2.1.1
This package is auto-updated.
Last update: 2025-03-21 01:08:49 UTC
README
Module utilized with Intacct PHP SDK.
Help Wanted
Feel Free to add Additional Filters to this module. At this point there are a very limited number of filters because this Module utilizes the new "Query" syntax.
Example Usage:
/** @var ClientConfig $clientConfig */ $clientConfig = new ClientConfig(); $client = new OnlineClient($clientConfig); /** @var CustomerList $accountsReceivableRequest **/ $customerListRequest = new CustomerList(); $customerListRequest->setFields(['CUSTOMERID', 'NAME']); $filter = new InFilter(); $filter->setField('CUSTOMERID'); $filter->addValue('123456'); $filter->addValue('789012'); $customerListRequest->addFilter($filter); $response = $client->execute($customerListRequest);