Create the Apple terms onboarding link for Tap to Pay
curl --request POST \
--url https://api.simplepay.mx/v1/in-person/tap-to-pay/apple-onboarding-link \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"merchant_display_name": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({merchant_display_name: '<string>'})
};
fetch('https://api.simplepay.mx/v1/in-person/tap-to-pay/apple-onboarding-link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/in-person/tap-to-pay/apple-onboarding-link"
payload = { "merchant_display_name": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Create the Apple terms onboarding link for Tap to Pay
POST
/
v1
/
in-person
/
tap-to-pay
/
apple-onboarding-link
Create the Apple terms onboarding link for Tap to Pay
curl --request POST \
--url https://api.simplepay.mx/v1/in-person/tap-to-pay/apple-onboarding-link \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"merchant_display_name": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({merchant_display_name: '<string>'})
};
fetch('https://api.simplepay.mx/v1/in-person/tap-to-pay/apple-onboarding-link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/in-person/tap-to-pay/apple-onboarding-link"
payload = { "merchant_display_name": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Última modificación el 1 de septiembre de 2026