Fetch a merchant

This endpoint is used for retrieving a merchant.

Request
Security:
header Parameters
Authorization
required
string
Default: Bearer {$$.env.access_token}
Responses
200

The details of the fetched Merchant

400

When the provided merchantId is not valid.

403

When you don't have the right permissions to view details of the provided merchantId.

404

When the provided merchantId does not exist in our system.

get/tap-to-pay/merchants/{merchantId}
Request samples
curl -i -X GET \
  'https://api.tyro.com/connect/tap-to-pay/merchants/{merchantId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "mid": "98765",
  • "posReference": "SydneyShop",
  • "isAuthorised": true,
  • "displayName": "Bobs Burger Shop"
}
Copyright © Tyro Payments 2019-2024. All right reserved.