List provider-neutral payments for one in-person device
curl --request GET \
--url https://api.simplepay.mx/v1/in-person/devices/{id}/payments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/in-person/devices/{id}/payments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/in-person/devices/{id}/payments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)List provider-neutral payments for one in-person device
GET
/
v1
/
in-person
/
devices
/
{id}
/
payments
List provider-neutral payments for one in-person device
curl --request GET \
--url https://api.simplepay.mx/v1/in-person/devices/{id}/payments \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/in-person/devices/{id}/payments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/in-person/devices/{id}/payments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Minimum string length:
1Required range:
1 <= x <= 100Response
200
Cursor-paginated Terminal and Tap to Pay history for the SimplePay device.
Last modified on September 1, 2026