Stripe Payments
Create a Stripe customer
Creates a Stripe Customer early in the funnel (e.g., at email capture). The customer ID can be reused when creating a subscription later. If a customer with this email already exists, returns the existing customer.
post/v1/payments/create-customer
Request body
Example request
{
"email": "user@example.com",
"webUserId": "uuid-here"
}Response
Customer created or found successfully
Example response
{
"customerId": "cus_xxx",
"isNew": true
}Changes
No recorded changes to this endpoint across all 1 revision of this API.