LogoLogo
PayShield - Order Insight / TxFind
PayShield - Order Insight / TxFind
  • Overview
    • Overview
  • Integration
    • Integration Overview
    • Merchant Integration
    • Provider Integration
  • Provider
    • Verifi Provider Search
    • EMS Provider Search
  • Merchant
    • Store Transaction Details
    • Update Transaction Details
    • Validate Cart Details
    • Upload Transaction Batch
    • Upload Transaction Batch File
    • Get Merchant Descriptors
  • Cart
    • cart Flag alert received
    • cart Flag chargeback received
    • get all cart attachment data and related meta data
Powered by GitBook
On this page
Edit on GitHub
  1. Provider

EMS Provider Search

Search from EMS

PreviousVerifi Provider SearchNextStore Transaction Details

Last updated 9 months ago

EMS Provider Search

post

Search for an EMS enabled merchant's transaction details.

Authorizations
Body
cardBinstring · max: 8Optional

The first 6-8 digits card number.

Example: 412345
cardLast4string · max: 4Optional

The last 4 digits card number.

Example: 5678
amountnumberOptional

Amout of purchase transactions.

Example: 499
currencystring · max: 3Optional

ISO 4217 currency code.

Example: USD
transactionDatestring · max: 20Optional

Transaction Date formatted in ISO 8601 20 charactor long without milliseconds (Example = YYYY-MM-DDThh:mm:ssZ)

Example: 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"
    }
  }
]