1const hitpay = require("hitpay")
2("hp_test_BQokikJOvBiI2HlWgH4olfQ2");
3
4// Create a payment intent to start a purchase flow
5let paymentIntent = await
6hitpay.paymentIntents.create({
7 amount: 2000,
8 currency: "usd",
9 description: "My first payment",
10});
11
12// Complete the payment using a test card.
13await hitpay.paymentIntents.confirm(paymentIntent.id, {
14 payment_method: "pm_card_mastercard",
15});
1const hitpay = require("hitpay")
2("hp_test_BQokikJOvBiI2HlWgH4olfQ2");
3
4// Create a payment intent to start a purchase flow
5let paymentIntent = await
6hitpay.paymentIntents.create({
7 amount: 2000,
8 currency: "usd",
9 description: "My first payment",
10});
11
12// Complete the payment using a test card.
13await hitpay.paymentIntents.confirm(paymentIntent.id, {
14 payment_method: "pm_card_mastercard",
15});