Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
$customerArray=array(array('email' => 'abcd@example.org', 'firstname' => 'first1', 'lastname' => 'last1',
'password' => 'password'),
array('email' => 'abcd1@example.org', 'firstname' => 'first2', 'lastname' => 'last2', 'password' =>
'password'));
CustomersCreate(array('sessionId'=>$sessionID2,'customerArray'=>$customerArray))
java.util.HashMap customer_map1 = new java.util.HashMap();
customer_map.put("email","abcd@abcd.com");
customer_map.put("firstname","first1");
customer_map.put("lastname","last1");
customer_map.put("password","password");
java.util.HashMap customer_map2 = new java.util.HashMap();
customer_map.put("email","abcd@abcd.com");
customer_map.put("firstname","first2");
customer_map.put("lastname","last2");
customer_map.put("password","password");
java.util.ArrayList values_list = new java.util.ArrayList();
java.util.ArrayList values_list1 = new java.util.ArrayList();
values_list.add(customer_map1 );
values_list.add(customer_map2 );
values_list1.add(values_list);