I've tried searching but so far, with the SDK (not the API) I haven't been able to find a customer with the phone number as a search query only.
May someone shed some light?
try { CustomerConnector customerConnector = new CustomerConnector(getApplicationContext(), mAccount, null); List<Customer> customerList = customerConnector.getCustomers("5558881234"); for (Customer customer : customerList) { Log.d("CUSTOMER", customer.getFirstName()); } } catch (ClientException | ServiceException | BindingException | RemoteException e) { e.printStackTrace(); }
1 Person is following this question.