Tyro Health playground
Tyro Health has a playground to allow you to test SDK transactions. You can access Playground by clicking on the below link:
https://playground.medipass.io/
- You will need a API Key and APP ID to use Playground.
- You will receive these credentials from your partnerships manager. If you haven’t yet received these, please contact healthpartnerships@tyro.com.
Card payment passing a MID and TID
{
platform: 'virtual-terminal',
chargeAmount: 'string',
paymentMethod: "terminal",
terminal: {
merchantId: "99922",
terminalId: "1",
},
providerNumber: 'string',
patient: {
.........
}
}
medipassPartnerSDK.renderCreateTransaction({
platform: "virtual-terminal",
providerNumber: "2429581T",
invoiceReference: "MA1567",
chargeAmount: "$100",
paymentMethod: "new-payment-card",
patient: {
mobile: "0411111111"
}
}, );
medipassPartnerSDK.renderCreateTransaction({
platform: "virtual-terminal",
providerNumber: "2429581T",
invoiceReference: "MA1567",
chargeAmount: "$100",
paymentMethod: "payment-link",
patient: {
mobile: "0411111111"
}
}, );
medipassPartnerSDK.renderCreateTransaction({
platform: "virtual-terminal",
providerNumber: "2429581T",
invoiceReference: "MA1567",
chargeAmount: "$100",
paymentMethod: "phone",
patient: {
mobile: "0411111111"
}
}, );