Provider guide

MoneK

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

At a glance
1
Supported transaction type

Supported modes
SALE
Testing

Test card details

Card Number:
4015501150000216
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.
merchantId
This is provided by MoneK.
amount
Always has to be a whole number, for example £2 is 200.
currencyCode
ISO standard country code for merchant location. Info can be found here.
countryCode
ISO standard currency code of transaction. Info can be found here.

Optional parameters

QAAddress
First line of address for the card owner.
QAPostcode
Postcode for the card owner.
QAEmailAddress
Email address of the card holder.
QAPhoneNumber
Phone number of the card holder.
paymentReference
Unique identifier for this payment. We always recommend using a GUID / UUID for payment references, you can see an example here.

MoneK 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": "monek",
            "mode": "test",
            "method": "payment",
            "parameters":
            {
            "transactionType": "SALE",
            "merchantId": "",
            "amount": "200",
            "currencyCode": "826",
            "countryCode": "826"
            }
            }'