| Error details: |
//Declare Map Variable to hold the customer details
Customer_Details = map();
//Add the customer details to the map variable
Customer_Details.put("FamilyName", "George Stepenson");
Customer_Details.put("FullyQualifiedName", "Stepenson ");
Customer_Details.put("DisplayName", "George");
//declare map variable to hold the shipping address
Shipping_Address = map();
//add shipping address to the map variable
Shipping_Address.put("Line1", "312, 10th Avenue");
Shipping_Address.put("Line2", "Rick cross street");
Shipping_Address.put("Line3", "5th Block");
Shipping_Address.put("Country", "USA");
//declare map variable to hold the billing address
Billing_Address = map();
//add billing address to the map variable
Billing_Address.put("Line1", "312, 10th Avenue");
Billing_Address.put("Line2", "Rick cross street");
Billing_Address.put("Line3", "5th Block");
Billing_Address.put("Country", "USA");
//adding the shipping address to customer details
Customer_Details.put("ShipAddr", Shipping_Address);
//adding the billing address to customer details
Customer_Details.put("BillAddr", Billing_Address);
//creating the customer in the Quickbooks Customer module with connecton name "Zoho" and account id "1241802285"
createResponse = intuit.quickbooks.create("QuickBooks_Online", "customer", "12345678910", Customer_Details);