v1

latestOpenAPI 3.0.32026-07-26172157253.6 KB
Stripe Payments

List Stripe Customers

Admin/debug read for mirrored Stripe customers. This is a display mirror only and should not replace app-owned billing tables.

get/api/payments/stripe/{environment}/customers

Path parameters

environment'test' | 'live' required

Payment provider environment.

Query parameters

limitinteger

Maximum rows to return.

Response

Stripe customers

Example response

{
  "customers": [
    {
      "providerCustomerId": "cus_123",
      "email": "buyer@example.com",
      "name": "Buyer Example",
      "phone": "+1 555-0100"
    }
  ]
}