forked from u-bits/heidelpayNodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
28 lines (24 loc) · 903 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require("@babel/core")
import Heidelpay, {Card, Customer} from '@heidelpay/nodejs-sdk'
const excuteScript = async () => {
const heidelpay = new Heidelpay('s-priv-2a102ZMq3gV4I3zJ888J7RR6u75oqK3n')
const customer = new Customer('Rene', 'Fred')
const card = new Card('4711100000000000', '01/2022').setCVC('123')
try {
const newCustomer = await heidelpay.createCustomer(customer)
const paymentCard = await heidelpay.createPaymentType(card)
const authorize = await paymentCard.authorize({
amount: 100,
orderId: 'order-157891-1234',
currency: 'EUR',
typeId: paymentCard.getId(),
returnUrl: 'https://www.google.at'
})
console.log('newCustomer', newCustomer.getCustomerId())
console.log('paymentCard', paymentCard.getId())
console.log('authorize', authorize.getId())
} catch (error) {
console.log('error', error)
}
}
excuteScript()