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