Revoke a ticket and its admission credential
curl --request POST \
--url https://api.simplepay.mx/v1/ticketing/tickets/{id}/revoke \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/ticketing/tickets/{id}/revoke', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/ticketing/tickets/{id}/revoke"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)POST
/
v1
/
ticketing
/
tickets
/
{id}
/
revoke
Revoke a ticket and its admission credential
curl --request POST \
--url https://api.simplepay.mx/v1/ticketing/tickets/{id}/revoke \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/ticketing/tickets/{id}/revoke', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/ticketing/tickets/{id}/revoke"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)Última modificación el 1 de septiembre de 2026