Download a SimplePay QR PNG
curl --request GET \
--url https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}/qr.png \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}/qr.png', 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/{id}/qr.png"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"Download a SimplePay QR PNG
GET
/
v1
/
physical-checkout
/
entrypoints
/
{id}
/
qr.png
Download a SimplePay QR PNG
curl --request GET \
--url https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}/qr.png \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}/qr.png', 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/{id}/qr.png"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"Última modificación el 1 de septiembre de 2026