Customer Service Overview
Last updated
Was this helpful?
The Customer Service enables you to create and manage customer profiles at payment processors using the Java SDK. Storing customer details with connectors streamlines future transactions and improves authorization rates.
Business Use Cases:
E-commerce accounts - Save customer profiles for faster checkout on return visits
SaaS platforms - Associate customers with subscription payments and billing histories
Recurring billing - Link customers to stored payment methods for automated billing
Fraud prevention - Consistent customer identity improves risk scoring accuracy
Create customer record in the payment processor system. Stores customer details for future payment operations.
First-time customer checkout, account registration, subscription signup
import com.hyperswitch.prism.CustomerClient;
CustomerClient customerClient = CustomerClient.builder()
.connector("stripe")
.apiKey("YOUR_API_KEY")
.environment("SANDBOX")
.build();Payment Service - Process payments linked to customers
Payment Method Service - Store and manage customer payment methods
Recurring Payment Service - Set up recurring billing for customers
Last updated
Was this helpful?
Was this helpful?

