The Enriched Data Transaction sub-object

Additional merchant information for card transactions
Transactions
The Enriched Data Transaction sub-object
 last updated: 
November 30, 2023

To make the transaction details more user-friendly and provide additional details such as website URL, logo, address, and location, we have integrated enriched merchant data into the Solid Transaction Object. Below you will find the additional fields of the enrichedData sub-object in the Transaction object response.

Field Description
name name of the merchant that processed the transaction
email name of the merchant that processed the transaction
email email address of the merchant
phone phone number of the merchant
website website of the merchant
logo merchant logo
address merchant street address, city, state, country and ZIP
location latitude and longitude of the merchant
labels descriptive category identifiers for the merchant

Here's sample of the enriched data in the transaction response:

  1. {
  2.   "enrichedData": {
  3.     "merchant": {
  4.       "name": "Grizzly Cafe Wrightwood",
  5.       "email": "",
  6.       "phone": "7602496733",
  7.       "website": "grizzlycafe.com",
  8.       "logo": "https://logos.ntropy.com/grizzlycafe.com",
  9.       "address": {
  10.         "addressType": "",
  11.         "line1": "1455 Highway 2",
  12.         "line2": "",
  13.         "city": "Wrightwood",
  14.         "state": "CA",
  15.         "country": "US",
  16.         "postalCode": "92397"
  17.       },
  18.       "location": {
  19.         "latitude": "34.36080",
  20.         "longitude": "-117.63559"
  21.       }
  22.     },
  23.     "labels": [
  24.       "food and drink",
  25.       "cafes and coffee shops",
  26.       "Food and Drink",
  27.       "Restaurants"
  28.     ]
  29.   }
  30. }