This endpoint is used for retrieving a list of merchants that the POS has access to.
The list of Merchants associated with the POS.
When you don't have the right permissions to list Merchants.
curl -i -X GET \ https://api.tyro.com/connect/tap-to-pay/merchants \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{- "results": [
- {
- "mid": "98765",
- "posReference": "SydneyShop",
- "isAuthorised": true,
- "displayName": "Sydney Shop 123"
}, - {
- "mid": "56789",
- "posReference": "SydneyShop",
- "isAuthorised": false,
- "displayName": "Sydney Shop 456"
}, - {
- "mid": "12345",
- "posReference": "MelbourneShop",
- "isAuthorised": true,
- "displayName": "Melbourne Shop 3000"
}
]
}