Create
Last updated
Was this helpful?
The create method creates a customer record in the payment processor.
merchantCustomerId
String
Yes
Your customer reference
email
String
No
Customer email
name
String
No
Customer name
connectorCustomerId
String
Customer ID (cus_xxx)
status
CustomerStatus
ACTIVE
Map<String, Object> request = new HashMap<>();
request.put("merchantCustomerId", "cust_12345");
request.put("email", "john@example.com");
Map<String, Object> response = customerClient.create(request);Last updated
Was this helpful?
Was this helpful?

