Retrieve customer records from Stripe.
Customers are created automatically by Checkout Sessions. Managed Payments handles customer communication (receipts, renewal notices) through Link.
Note: If a customer requests data deletion, Stripe cancels their subscriptions and deletes associated objects.
Summary
Functions
Lists customers.
Returns a lazy Stream of all customers, auto-paginating.
Retrieves a customer by ID.
Functions
@spec list( map(), keyword() ) :: StripeManaged.Client.response()
Lists customers.
@spec list_all( map(), keyword() ) :: Enumerable.t()
Returns a lazy Stream of all customers, auto-paginating.
@spec retrieve( String.t(), keyword() ) :: StripeManaged.Client.response()
Retrieves a customer by ID.