Bind a permanent SimplePay QR to a table
curl --request POST \
--url https://api.simplepay.mx/v1/table-pay/tables/{tableId}/bind-entrypoint \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"entrypoint_ref": "<string>"
}
'const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({entrypoint_ref: '<string>'})
};
fetch('https://api.simplepay.mx/v1/table-pay/tables/{tableId}/bind-entrypoint', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/table-pay/tables/{tableId}/bind-entrypoint"
payload = { "entrypoint_ref": "<string>" }
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)POST
/
v1
/
table-pay
/
tables
/
{tableId}
/
bind-entrypoint
Bind a permanent SimplePay QR to a table
curl --request POST \
--url https://api.simplepay.mx/v1/table-pay/tables/{tableId}/bind-entrypoint \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"entrypoint_ref": "<string>"
}
'const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({entrypoint_ref: '<string>'})
};
fetch('https://api.simplepay.mx/v1/table-pay/tables/{tableId}/bind-entrypoint', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/table-pay/tables/{tableId}/bind-entrypoint"
payload = { "entrypoint_ref": "<string>" }
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Autorizaciones
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Encabezados
Required string length:
8 - 255Parámetros de ruta
Cuerpo
application/json
Pattern:
^spqr_[a-z0-9]{32}$Respuesta
200
Bound table.
Última modificación el 1 de septiembre de 2026