Read
1min
The following is an example of read Vendor. The QuickBooks vendor Id (Id) is required to read the vendor.
Request
Response
|
The following is an example of read Vendor. The QuickBooks vendor Id (Id) is required to read the vendor.
// Create a Map to store all the data of a Vendor Map<String, Object> vendorMap = new Map<String, Object>(); vendorMap.put('Id','67'); // Initializing the Request Data to be passed. Map<String, Object> reqObj = new Map<String, Object>(); reqObj.put('version', '1.0'); reqObj.put('action', 'readVendor'); reqObj.put('options',vendorMap); //Required, if QuickBooks Multi-Org is enabled in Breadwinner. reqObj.put('qbOrgId', '!aa00TM'); // Placing a request to Breadwinner Global API Map<String, Object> respMap = breadwinner_qbo.BreadwinnerQBAPI.call(reqObj); System.debug(respMap);