List Embedded Payments transactions

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

Request
Security:
query Parameters
reference
string
locationId
string

The location ID of the transactions to be retrieved.

This is the location ID of the merchant that you are using to retrieve the transactions.

Example: locationId=tc-location-2000
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

404

When the provided merchant or location ID does not exist in our system

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&locationId=tc-location-2000&limit=10&page=2' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "results": [
    ],
  • "pagination": {
    }
}
Copyright © Tyro Payments 2019-2024. All right reserved.