Quick Start
Snowdrop Solutions' Merchant Reconciliation System (MRS) is a REST API that is simple and easy to implement. To make your first API request, you can use the OpenAPI documentation, or you can make a request in the language of your choice, below.
To start, we will call the simple /api/v3/merchant
endpoint, using a GET request.
curl --request GET
--url 'https://regional-snowdrop-domain-goes-here.com/api/v3/merchant?merchant_name=mcdonalds&type=restrictive&location=london&country=GBR'
--header 'X-Api-Key:
<YOUR-API-KEY>
'
Note: the type=restrictive
part refers to the type of request. You don't have to worry about this for now, we will cover restrictive vs extended later.
The returned response contains the enriched transaction in JSON format:
For more on the meaning of these fields, consult the OpenAPI Docs.
Having problems? Consult Troubleshooting or FAQ.
Last updated
Was this helpful?