Provider guide
Cashflows
Integration notes, required parameters, test details and example requests for integrating Cashflows with the Revo PCI platform.
At a glance
1
Supported transaction type
Supported mode
PAYMENT
Testing
Test card details
Card Number:
4000000000000002Expiry Date:
0731CVV:
123
Overview
Integration requirements
Required parameters
transactionType
Currently only 'PAYMENT' is supported.
apiId
This is provided by Cashflows.
apiKey
This is provided by Cashflows.
amount
Always has to be a whole number, 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": "cashflows",
"mode": "test",
"method": "payment",
"parameters": {
"transactionType": "PAYMENT",
"apiId": "",
"apiKey": "",
"amount": "200",
"currency": "GBP"
}
}'