Skip to content

Escape-Hatch-Co/Intacct_Customer_List

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intacct Customer List Module

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

About

Customer List Module for Intacct PHP SDK

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages