Provider guide

Global Payments REST

Integration notes, required parameters, test details and example requests for integrating Global Payments REST with the Revo PCI platform.

At a glance
2
Supported transaction types

Supported modes
SALE, REFUND
Testing

Test card details

Card Number:
4111111111111111
Expiry Date:
0731
CVV:
123
Overview

Integration requirements

Required parameters

transactionType

'SALE' is supported which will take a payment.

'REFUND' is supported which will refund a previous payment.

apiKey
This is provided by Global Payments.
apiSecret
This is provided by Global Payments.
amount
Amount in cents, for example £2 is 200.
currency
Must be provided as 3 letters for example: 'GBP'.
Reference

Example request

json example API request
curl --location 'https://api.revopci.co.uk/' \
            --header 'X-Session;' \
            --header 'X-Auth;' \
            --header 'Content-Type: application/json' \
            --data '{
            "provider": "globalpayments-rest",
            "mode": "test",
            "method": "payment",
            "parameters": {
            "transactionType": "SALE",
            "apiKey": "",
            "apiSecret": "",
            "amount": "200",
            "currency": "GBP"
            }
            }'