Create a device-bound Tap to Pay SDK session
curl --request POST \
--url https://api.simplepay.mx/v1/tap-to-pay/payment_intents/{id}/sdk-session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"device_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({device_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.simplepay.mx/v1/tap-to-pay/payment_intents/{id}/sdk-session', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/tap-to-pay/payment_intents/{id}/sdk-session"
payload = { "device_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Create a device-bound Tap to Pay SDK session
POST
/
v1
/
tap-to-pay
/
payment_intents
/
{id}
/
sdk-session
Create a device-bound Tap to Pay SDK session
curl --request POST \
--url https://api.simplepay.mx/v1/tap-to-pay/payment_intents/{id}/sdk-session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"device_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({device_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.simplepay.mx/v1/tap-to-pay/payment_intents/{id}/sdk-session', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/tap-to-pay/payment_intents/{id}/sdk-session"
payload = { "device_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Last modified on September 1, 2026