Billing

Get the current user's payment method and card-change config

Returns the saved payment method (brand, last4, expiry, expiringSoon), the $0 product ident to purchase in order to re-bind the card, and — for providers with an own card vault (Upgate) — every saved card the user can manage. CVV is never stored.

get/v1/billing/payment-method

Response

rebindProductIdentstring required

FunnelFox $0 product ident to purchase via the normal checkout flow in order to change the payment method. Empty for redirect-checkout providers.

rebindMode'funnelfox_product' | 'redirect_checkout' required

How to change the card: buy the FF $0 product via the embedded SDK, or start a card_update redirect checkout (POST /v2/payments/checkout).

Example response

{
  "paymentMethod": {
    "source": "funnelfox",
    "type": "card",
    "brand": "Visa",
    "last4": "4242",
    "expMonth": 11,
    "expYear": 2027
  },
  "rebindProductIdent": "card_update_0"
}

Changes

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