List Vendors (Legacy)
This example shows you how to:
- Execute a query to list vendors.
- Read any additional paginated results from the query.
Prerequisites
- You have downloaded or cloned the Sage Intacct SDK for Node.js examples.
- You successfully ran the getting started example—in particular, you set up the credentials.inifile required bybootstrap.js.
- The company you are using has multiple vendor records.
- The user you are using has list and view permissions for the vendor object.
Run the example
- 
    Run the list-vendors.jsfile:node list-vendors.js
- 
    Observe the terminal output. The number of vendor records found and each page remaining echo to the terminal: Page 1 success! Number of vendor records found: 14. Number remaining: 12 Page 2 success! Records remaining: 10 Page 3 success! Records remaining: 8 Page 4 success! Records remaining: 6 Successfully read 4 pages
- 
    Open the generated logs/intacct.logfile in a text editor and review the entries.The file provides info and debug entries. The SDK provides a debug entry for each HTTP request/response (with the Sage Intacct endpoint). Note that the log file was created by the logger set in the client config. 
Extra credit
Filter the results
- 
    Set an Intacct/SDK/Functions/Common/Queryon theReadByQueryobject to filter the number of results. For example, add the following to the example to list only active vendors:let where = new IA.Functions.Common.Query.Comparison.EqualTo.EqualToString(); where.field = "STATUS"; where.value = "T"; query.query = where;
Try a different object
- 
    Query for APBILLobjects by changing theObjectNameproperty, as follows:query.objectName = "APBILL";
- 
    Modify the query.fieldslist to return the information you want.
What’s next?
- Try an example that creates, reads, updates, and deletes a customer.
- Browse the reference documentation for the SDK.