Provider guide

Elavon

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

At a glance
1
Supported transaction type

Supported modes
SALE
Testing

Test card details

Card Number:
4263970000005262
Expiry Date:
0531
CVV:
123
Overview

Integration requirements

Required parameters

transactionType
Currently only 'SALE' is supported which will take a payment from the requested card, more options can be added on request.
merchantUser
This is provided by Elavon.
merchantPassword
This is provided by Elavon.
holderName
Name as it appears on the card.
amount
Always should be a whole or decimal, for example £2.50 is 2.50.
currencyCode
Must be provided as 3 letters for example: 'GBP'.

Optional parameters

Elavon may support other parameters not currently integrated into the PCI platform, more information can be found here, if you would like any integrated please contact us.

Reference

Example request

cURL exampleAPI request
curl --location 'https://api.revopci.co.uk/' \
            --header 'X-Session;' \
            --header 'X-Auth;' \
            --header 'Content-Type: application/json' \
            --data '{
            "provider": "elavon",
            "mode": "test",
            "method": "payment",
            "parameters":
            {
            "transactionType": "SALE",
            "merchantUser": "",
            "merchantPassword": "",
            "holderName": "Test Test",
            "amount": "200",
            "currencyCode": "GBP",
            }
            }'