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)Autorizaciones
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Parámetros de ruta
Parámetros de consulta
Minimum string length:
1Rango requerido:
1 <= x <= 100Respuesta
200
Cursor-paginated Terminal and Tap to Pay history for the SimplePay device.
Última modificación el 1 de septiembre de 2026