Provider guide
Acquired
Integration notes, required parameters, test details and example requests for integrating Adyen 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:
0631CVV:
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
Mid
This is provided by Acquired. GUID Format
amount
Entered as a standard amount. EG: 15.02.
currency
Must be provided as 3 letters for example: 'GBP'.
order_id
Unique identifier for this payment. We always recommend using a GUID / UUID for payment references, you can see an example here.
customer_id
ID of the Acquired customer. If not specified, you must specify customer data (see optional below).
Optional parameters
reference
Your reference for the customer.
first_name
Customer First Name.
last_name
Customer Last Name.
dob
Customer Date of Birth.
email
Customer Email.
billingLine1
Billing Address Line 1.
billingCity
Billing City.
billingPostalCode
Billing Post Code.
phoneNumber
Customer Phone Number.
Acquired 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": "acquired",
"mode": "test",
"method": "payment",
"parameters":
{
"transactionType": "SALE",
"app_id": "12345678",
"app_key": "00000000000000000000000000000000",
"Company-Id": "00000000-0000-0000-0000-000000000000",
"Mid": "00000000-0000-0000-0000-000000000000",
"amount": "15.02",
"currency": "GBP",
"order_id": "00000000-0000-0000-0000-000000000000",
"customer_id": "00000000-0000-0000-0000-000000000000"
}
}'