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

emailstring required

Customer email address

webUserIdstring

Web user ID from tracking system

Example request

{
  "email": "user@example.com",
  "webUserId": "uuid-here"
}

Response

Customer created or found successfully

customerIdstring required

Stripe Customer ID

isNewboolean required

Whether the customer was newly created

Example response

{
  "customerId": "cus_xxx",
  "isNew": true
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.