EMS Provider Search
Search from EMS
Search for an EMS enabled merchant's transaction details.
Authorizations
Body
cardBinstring · max: 8OptionalExample:
The first 6-8 digits card number.
412345
cardLast4string · max: 4OptionalExample:
The last 4 digits card number.
5678
amountnumberOptionalExample:
Amout of purchase transactions.
499
currencystring · max: 3OptionalExample:
ISO 4217 currency code.
USD
transactionDatestring · max: 20OptionalExample:
Transaction Date formatted in ISO 8601 20 charactor long without milliseconds (Example = YYYY-MM-DDThh:mm:ssZ)
2024-06-05T00:00:00Z
Responses
200
Response
application/json
400
Error
application/json
401
Unauthorized
application/json
404
Not found
application/json
default
Error Payload
application/json
post
POST /v2/provider/ems/getTransactionDetails HTTP/1.1
Host: api
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 112
{
"cardBin": "412345",
"cardLast4": "5678",
"amount": "499",
"currency": "USD",
"transactionDate": "2024-06-05T00:00:00Z"
}
[
{
"merchantInformation": {
"merchantContactPhone": "+13236555789",
"storeDetails": {
"storeName": "Verifi Webstore"
},
"merchantUrl": "https://www.verifi.com",
"merchantName": "Verifi,Inc."
},
"receipt": {
"paymentInformation": {
"paymentTotalAmount": {
"amount": 499,
"currency": "USD"
}
},
"productsPurchasedList": [
{
"quantity": 1,
"deliveryDetails": {
"shippingCarrier": "UPS",
"dateOfShipment": "2023-01-27T19:11:28Z",
"otherStatusDescription": "DELIVERED: Left at front door",
"trackingNumber": "1Z9999999999999999",
"dateOfDelivery": "2023-01-29T11:44:00Z",
"deliveryStatus": "OTHER"
},
"creditReimbursementSequenceNumber": 1,
"unitPriceAmount": {
"amount": 100.25,
"currency": "USD"
},
"productUrl": "https://www.verifi.com/product/7366",
"productType": "ELECTRONICS",
"productDescription": "ABC Smart Watch, Fitness Tracker and Health Monitor",
"artistOrSeller": "QualityElectronics"
}
]
},
"customerInformation": {
"accountId": "jcustomer"
},
"device": {
"ipAddress": "198.241.10.6",
"deviceFingerprint": "ace4cb941f15613bdc7e69b28318646915928a6d",
"deviceId": "576787-7h9y8hf777-88887777hhhhh"
},
"deliveryAddress": {
"address1": "5670 Wilshire Blvd"
}
}
]
Last updated