List Embedded Payments transactions

This endpoint is used for retrieving Embedded Payments transactions by search.

Request
Security:
query Parameters
reference
string
limit
number [ 1 .. 100 ]

Specifies the amount of results to be retrieved.

A maximum of 100 results are returned if this value is not provided.

Example: limit=10
page
number >= 1

Specify the page to retrieve.

You will need to use this setting if you wish to retrieve specific pages.

Page-numbering is based on the value of "limit". If limit=5, then page=1 will display the hits from 1 to 5, page=3 will display the hits from 11 to 15.

Page numbers start at 1.

A request for a non-existing page will yield 0 results.

Example: page=2
header Parameters
Authorization
required
string
Default: Bearer {$$.env.access_token}
Responses
200

Success

403

When you don't have the right permissions to access the transactions

get/tap-to-pay/merchants/{merchantId}/transactions
Request samples
curl -i -X GET \
  'https://api.tyro.com/connect/tap-to-pay/merchants/{merchantId}/transactions?reference=string&limit=10&page=2' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "results": [
    ],
  • "pagination": {
    }
}
Copyright © Tyro Payments 2019-2024. All right reserved.