createCustomer
Create a customer in the Cloud4Wi account
/**
* Create a customer in the Cloud4Wi account
*
* @param customer - user you want to create
* @param deduplicate - attribute that will be used for customer deduplication.
* @param onSuccess - invoked if customer successfully created
* @param onError - invoked if exception occurred
*
* @return future with CustomerCreateResponse object which represents saved customer
*/
public Future<CustomerCreateResponse> createCustomer(
Customer customer,
String deduplicate,
Callback<CustomerCreateResponse> onSuccess,
Callback<MobileSDKException> onError);Customer deduplication
Customer username and password
Examples
Create customer
Create customer without deduplication
Last updated
Was this helpful?