on 2024 Oct 28 10:55 AM
Dear experts,
We are located in Belgium and our customer wants to integrate Customer Checkout with payment terminals.
They are using VIVA as their payment provider (https://www.viva.com).
The supported protocols on the VIVA side are (https://developer.viva.com/tutorials/pos-terminals/tap-on-phone/integrations/#integrations)
Peer to Peer uses - HTTP protocol and REST API
We have informed treibauf ag (PEPPER integration) about this and they do not support REST API with VIVA yet.
Are there other ways to integrate this for our customers via VIVA?
Thank you in advance!
Kind regards,
Lorenz Verhasselt
Request clarification before answering.
Hi ,
Custom Development:
Code :
const express = require('express');
const axios = require('axios');
const app = express();
app.post('/processPayment', async (req, res) => {
const paymentData = req.body;
const response = await axios.post('https://api.viva.com/payments', paymentData);
res.send(response.data);
});
app.listen(3000, () => console.log('Service running on port 3000'));
Regards ,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
75 | |
30 | |
9 | |
8 | |
7 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.