Delegate a ticket order payment to Hosted Checkout
curl --request POST \
--url https://api.simplepay.mx/v1/ticketing/orders/{id}/checkout \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/ticketing/orders/{id}/checkout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/ticketing/orders/{id}/checkout"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)POST
/
v1
/
ticketing
/
orders
/
{id}
/
checkout
Delegate a ticket order payment to Hosted Checkout
curl --request POST \
--url https://api.simplepay.mx/v1/ticketing/orders/{id}/checkout \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/ticketing/orders/{id}/checkout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/ticketing/orders/{id}/checkout"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)Last modified on September 1, 2026