This endpoint can be used to fetch the IDs of all merchants that are currently
accessible to the integration partner.
curl https://api.thanx.com/partner/merchants \
-H 'X-ClientId: ${client_id}' \
-H 'Accept-Version: v4.0' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ${access_token}' \
Response
Merchant Handle. This is used as a long-lived unique descriptive identifier
for the merchant across the Thanx platform.
{
"merchants": [
{
"id": "k2lye10h32l5wzo",
"name": "Pizza Company",
"handle": "pizzacompany"
}
]
}