Global Payments (Formally Realex Payments)

Integration can be tested here.

Global Payments can be contacted here.


Example Request

curl --location 'https://api.revopci.co.uk/' \
--header 'X-Session;' \
--header 'X-Auth;' \
--header 'Content-Type: application/json' \
--data '{
    "provider": "globalpayments",
    "mode": "test",
    "payment": "payment",
    "parameters":
    {
        "transactionType": "SALE" or "TOKEN",
        "merchantId": "",
        "account": "",
        "secret": "",
        "cardHolderName": "Test Test",
        "orderId", "00000000-0000-0000-0000-000000000000"

        //SALE
        "channel": "Test",
        "amount": "200",
        "currency": "GBP",
        "autoSettle": "1",
        
        //TOKEN
        "cardRef": "00000000-0000-0000-0000-000000000000",
        "payerRef": "00000000-0000-0000-0000-000000000000",
        "description": "This is a test payment",
    }
}'