searchResponse = intuit.quickbooks.searchRecords("st_Rate_QBO", "1XXXXXXXXX0", "SELECT * FROM Customer where FamilyName='" + input.Last_Name + "' AND GivenName='" + input.First_Name + "'");
queryResponse = (searchResponse.get("QueryResponse")).toMap();
isResult = queryResponse.isEmpty();
if (!isResult)
{
queryResponseList = queryResponse.get("Customer").toJSONList();
for each rec in queryResponseList
{
recMap = rec.toMap();
id = recMap.get("Id");
BillAddr = recMap.get("BillAddr");
alert(id);
alert(BillAddr);
}
}
I'm hoping someone can provide code that will allow me to pull the individual child attributes. Any assistance would be greatly appreciated.