I am using this code to create a customer. I can click on it from the Orders screen but it is not attached to merchant. How can I attach it for the current merchant so it will be visible on the Customers screen?
customerConnector.addEmailAddress(newCustomer.getId(), getText(email));
newCustomer = customerConnector.createCustomer(getText(firstName), getText(lastName), true);
customerConnector.addPhoneNumber(newCustomer.getId(), getText(phone));
customerConnector.setAddress(newCustomer.getId(), getText(address), null, null, null, null, null, null);