Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

Testing

node v10.24.1
version: 1.0.0
endpointsharetweet
const customer = await require('stripe')('sk_test_BQokikJOvBiI2HlWgH4olfQ2').customers.create({ source: 'tok_visa', description: 'John Doe', email: 'john@example.com', });
// Require the Stripe library with a test secret key. const stripe = require('stripe')('sk_test_BQokikJOvBiI2HlWgH4olfQ2'); // Create a monthly plan. const plan = await stripe.plans.create({ amount: 999, currency: 'usd', interval: 'month', product: { name: 'Gold Full', }, }); // Subscribe the customer to the plan while applying a coupon. const subscription = await stripe.subscriptions.create({ customer: customer.id, plan: plan.id, coupon: '25OFF', });
Created from: https://stripe.com/
Loading…

no comments

    sign in to comment