Customer Service Overview
Overview
The Customer Service enables you to create and manage customer profiles at payment processors. Storing customer details with connectors streamlines future transactions, reduces checkout friction, and improves authorization rates by maintaining a consistent identity across multiple payments.
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
The service creates customer records at the underlying payment processor (Stripe, Adyen, etc.), allowing you to reference the same customer across multiple transactions without resending personal information.
Operations
Create customer record in the payment processor system. Stores customer details for future payment operations without re-sending personal information.
First-time customer checkout, account registration, subscription signup
Common Patterns
New Customer Checkout Flow
Create a customer profile during first-time checkout, then use the customer ID for future payments and payment method storage.
Flow Explanation:
Create customer - Send customer details (name, email, phone) to the Customer Service. The connector creates a profile at the payment processor and returns a
connector_customer_id(e.g., Stripe'scus_xxx). Store this ID in your user database for future reference.Authorize payment - When the customer makes a payment, call the Payment Service's
AuthorizeRPC with theconnector_customer_id. This reserves funds on the customer's payment method and links the transaction to their profile. The response includes aconnector_transaction_idand statusAUTHORIZED.Future transactions - For subsequent payments, reuse the same
connector_customer_id. The payment processor recognizes the returning customer, which improves authorization rates and enables features like saved payment methods.
Benefits:
Streamlined checkout for returning customers
Better authorization rates through customer history
Simplified payment method management
Unified customer view across payment processors
SaaS Subscription Onboarding
Create customer during signup, then use the stored customer ID for initial subscription charge and recurring payments.
Flow Explanation:
Create customer - During signup, send customer details to Customer Service. The payment processor creates a customer profile and returns a
connector_customer_id. This links all future transactions to this customer.Tokenize payment method - Collect the customer's payment details and call Payment Method Service's
TokenizeRPC with theconnector_customer_id. The connector securely stores the payment method and returns a token that can be used for future charges without handling raw card data.Authorize payment - For the initial subscription charge, call Payment Service's
AuthorizeRPC with both theconnector_customer_idand the tokenized payment method. This reserves the funds on the customer's card.Capture payment - Once the authorization is confirmed, call the Payment Service's
CaptureRPC to finalize the charge and transfer funds. The status changes fromAUTHORIZEDtoCAPTURED.Subsequent billing - For future billing cycles, use the Recurring Payment Service's
ChargeRPC with the storedconnector_customer_idand payment method token to process payments without customer interaction.
Next Steps
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?

