Provider guide
Acquired
Integration notes, required parameters, test details and example requests for integrating Acquired with the Revo PCI platform.
At a glance
1
Supported transaction type
Supported mode
SALE
Key setup requirement
All payments must have a unique ID
Important
Acquired require that all payments sent to them always have a unique id, if you try to make a payment with the same reference it will get rejected.
Testing
Test card details
Card Number:
4000011180138710Expiry Date:
0731CVV:
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.
app_id
This is provided by Acquired. EG: 123456789
app_key
This is provided by Acquired. EG: ab14e62ae6711df0a983f1bd123a45a6
Company-Id
This is provided by Acquired. GUID Format
amount
Always has to be a whole number, for example £2 is 200.
currency
Must be provided as 3 letters for example: 'GBP'.
reference
Unique identifier for this payment. We always recommend using a GUID / UUID for payment references, you can see an example here.
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": "acquired",
"mode": "test",
"method": "payment",
"parameters": {
"transactionType": "SALE",
"app_id": "",
"app_key": "",
"Company-Id": "",
"amount": "200",
"currency": "GBP",
"reference": "00000000-0000-0000-0000-000000000000"
}
}'