Download OpenAPI specification:
API Specification for Zebra FinSight Enhancer (FSE)
Tries to enrich given transaction with merchant details
The request body must be formatted as JSON.
id required | string a uniquie id of the transaction, used to help you correlate the data back to your system |
required | object (TransactionInfo) |
{- "id": "string",
- "transaction": {
- "amount": {
- "amount": 0.01,
- "isoCurrency": "str"
}, - "location": {
- "country": "string",
- "region": "string",
- "city": "string",
- "address": "string",
- "postalCode": "string",
- "latitude": 0,
- "longitude": 0
}, - "mcc": "string",
- "valueDate": "2019-08-24",
- "merchantName": "string",
- "description": "string"
}
}
{- "id": "string",
- "enrichment": {
- "merchant": {
- "name": "string",
- "merchantId": "string",
- "website": "string",
- "logo": "string",
- "phoneNumber": "string",
- "email": "string",
- "location": {
- "country": "string",
- "region": "string",
- "city": "string",
- "address": "string",
- "postalCode": "string",
- "latitude": 0,
- "longitude": 0
}
}, - "categories": [
- "string"
]
}
}
Tries to enrich given transaction with merchant details
The request body must be formatted as JSON.
id required | string a uniquie id of the transaction, used to help you correlate the data back to your system |
description required | string raw description of transaction, unstructured |
object (Location) |
{- "id": "string",
- "description": "string",
- "location": {
- "country": "string",
- "region": "string",
- "city": "string",
- "address": "string",
- "postalCode": "string",
- "latitude": 0,
- "longitude": 0
}
}
{- "id": "string",
- "enrichment": {
- "merchant": {
- "name": "string",
- "merchantId": "string",
- "website": "string",
- "logo": "string",
- "phoneNumber": "string",
- "email": "string",
- "location": {
- "country": "string",
- "region": "string",
- "city": "string",
- "address": "string",
- "postalCode": "string",
- "latitude": 0,
- "longitude": 0
}
}, - "categories": [
- "string"
]
}
}
returns details of given merchantid
id required | string |
{- "name": "string",
- "merchantId": "string",
- "website": "string",
- "logo": "string",
- "phoneNumber": "string",
- "email": "string",
- "location": {
- "country": "string",
- "region": "string",
- "city": "string",
- "address": "string",
- "postalCode": "string",
- "latitude": 0,
- "longitude": 0
}
}