forked from u-bits/heidelpayNodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.es.js
41 lines (33 loc) · 1.28 KB
/
index.es.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
29
30
31
32
33
34
35
36
37
38
39
40
41
const Heidelpay = require('@heidelpay/nodejs-sdk').default
const Card = require('@heidelpay/nodejs-sdk').Card
const Customer = require('@heidelpay/nodejs-sdk').Customer
const excuteScript = function() {
const heidelpay = new Heidelpay('s-priv-2a10BF2Cq2YvAo6ALSGHc3X7F42oWAIp')
console.log('SDK_VERSION', heidelpay.getVersion())
const card = new Card('4711100000000000', '01/2022')
card.setCVC('123')
card.set3ds(true)
const customer = new Customer('Rene', 'Fred')
heidelpay.createCustomer(customer).then(function(newCustomer) {
console.log('newCustomer', newCustomer.getCustomerId())
return heidelpay.createPaymentType(card)
}).then(function(paymentCard) {
console.log('paymentCard', paymentCard.getId())
console.log('paymentCard', paymentCard.get3ds())
return paymentCard.authorize({
amount: 100,
orderId: Math.floor(Date.now() / 1000).toString(),
currency: 'EUR',
typeId: paymentCard.getId(),
returnUrl: 'https://www.google.at'
})
}).then(function(authorize) {
console.log('authorize', authorize.getId())
console.log('authorize', authorize.getOrderId())
// Authorize successful with payment Card
}).catch(function (error) {
console.log('error', error.message)
// Handle error
});
}
excuteScript()