Advertisement
Guest User

Untitled

a guest
May 21st, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. const intent = (await require("stripe")(process.env.STRIPE_PKEY).paymentIntents.create({
  2. payment_method_types: ["card"],
  3. amount: ammount,
  4. currency: currency,
  5. application_fee_amount: floom_fee,
  6. on_behalf_of: merchantStripeConnectID,
  7. transfer_data: {
  8. destination: merchantStripeConnectID
  9. }
  10. })).client_secret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement