List SimplePay QR entrypoints
curl --request GET \
--url https://api.simplepay.mx/v1/physical-checkout/entrypoints \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/physical-checkout/entrypoints', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/physical-checkout/entrypoints"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)List SimplePay QR entrypoints
GET
/
v1
/
physical-checkout
/
entrypoints
List SimplePay QR entrypoints
curl --request GET \
--url https://api.simplepay.mx/v1/physical-checkout/entrypoints \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/physical-checkout/entrypoints', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/physical-checkout/entrypoints"
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.
Respuesta
200
The merchant's QR entrypoints.
Última modificación el 1 de septiembre de 2026