UNPKG

@sergdudko/stripe-js

Version:

Supercharge Your Stripe Integration with Enhanced Methods for stripe-js: Take Full Control of Customer Card Management Right from Your Frontend! Elevate Your Payment Processing Capabilities with Ease and Efficiency.

23 lines (22 loc) 859 B
import { responseHandler } from "../utils/handlers.js"; import { stripeApiUrl, stripeApiVersion } from "../utils/constants.js"; /** * Get all customer's payment methods * * @param customerId - customer id (see: https://stripe.com/docs/api/customers/object#customer_object-id) * @param ephemeralKey - customer ephemeral key * @returns */ export const getAllPaymentMethods = async function (customerId, ephemeralKey) { const stripeApiKey = this._apiKey; if (typeof stripeApiKey !== "string") throw new Error("Initialization failed."); // make request return fetch(`${stripeApiUrl}/payment_methods?customer=${customerId}&type=card&limit=100`, { headers: { Authorization: `Bearer ${ephemeralKey}`, "Stripe-Version": stripeApiVersion, }, method: "GET", }).then(responseHandler); };