Read
1min
The following is an example of read Payment. The QuickBooks Payment Id (Id) is required to read the payment.
Request
Response
|
The following is an example of read Payment. The QuickBooks Payment Id (Id) is required to read the payment.
// Create a Map to store all the data of a Payment Map<String, Object> paymentMap = new Map<String, Object>(); paymentMap.put('Id','379'); // Initializing the Request Data to be passed. Map<String, Object> reqObj = new Map<String, Object>(); reqObj.put('version', '1.0'); reqObj.put('action', 'readPayment'); reqObj.put('options',paymentMap); //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);