Validate and atomically consume one ticket credential online
curl --request POST \
--url https://api.simplepay.mx/v1/admission-control/redemptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.simplepay.mx/v1/admission-control/redemptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/admission-control/redemptions"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Validate and atomically consume one ticket credential online
POST
/
v1
/
admission-control
/
redemptions
Validate and atomically consume one ticket credential online
curl --request POST \
--url https://api.simplepay.mx/v1/admission-control/redemptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.simplepay.mx/v1/admission-control/redemptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/admission-control/redemptions"
payload = {}
headers = {
"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.
Cuerpo
application/json
The body is of type object.
Respuesta
2XX
An allow or deny decision from Admission Control.
Última modificación el 1 de septiembre de 2026