Links

View Enriched Data

get
https://api.synapsefi.com
/v3.1/enrich/:merchant_id
View Enriched Data
Entity, Facilitator or Location IDs are returned as a part of a card transaction stream. These values are located either in from.meta.enriched_info in case of a push transaction or to.meta.enriched_info in case of a pull transaction.
For instance, for a transaction description like PAYPAL *NETFLIX.COM 4029357733 CA 950327620, enriched_info will look like the following:
// PAYPAL *NETFLIX.COM 4029357733 CA 950327620
{
"enriched_info": {
"category": "entertainment",
"entity_id": "5bde7b198ddd931c7ee7d0df", // Netflix
"facilitator_id": "5bde7b198ddd931c7ee7d0e0", // Paypal
"location_id": null,
"status": "SETTLED"
}
}
A Biller ID on the other hand is the _id returned on View Billers API call.

Example Request

HTTP
cURL
Python
JavaScript
Ruby
PHP
Go
GET /v3.1/enrich/5d27c72e715467f6ef157bee HTTP/1.1
Host: qa-api.synapsefi.com
Content-Type: application/json
curl --location --request GET 'https://qa-api.synapsefi.com/v3.1/enrich/5d27c72e715467f6ef157bee' \
--header 'Content-Type: application/json'
//
//
//
//
//