MVFM

stripe/retrieve_payment_intent

Retrieve a PaymentIntent by its ID

const app = mvfm(prelude, console_, stripe_);
const prog = app({}, ($) => {
  const pi = $.stripe.paymentIntents.retrieve("pi_abc123");
  return $.console.log(pi);
});
await fold(defaults(app, { stripe: crystalBallStripeInterpreter }), prog);
Ctrl+Enter