CreateIssuingCardholder
Source:
src/Stripe/CreateIssuingCardholder.ts
Create a Stripe Issuing Cardholder over HTTP. Account-scoped — binds the API key onto the host, not a specific cardholder resource.
Creating a Cardholder at runtime
Section titled “Creating a Cardholder at runtime”const create = yield* Stripe.CreateIssuingCardholder();const cardholder = yield* create({ name: "Alice Example", billing: { address: { line1: "123 Main Street", city: "San Francisco", state: "CA", postal_code: "94111", country: "US", }, },});