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

Copy
Copied
{
  platform: 'virtual-terminal',
  chargeAmount: 'string',
  paymentMethod: "terminal",
  terminal: {
    merchantId: "99922",
    terminalId: "1",
  },
  providerNumber: 'string',
  patient: {
    .........
  }
}

New payment card

Copy
Copied
medipassPartnerSDK.renderCreateTransaction({
  platform: "virtual-terminal",
  providerNumber: "2429581T",
  invoiceReference: "MA1567",
  chargeAmount: "$100",
  paymentMethod: "new-payment-card",
  patient: {
    mobile: "0411111111"
  }
}, );

Payment link payment

Copy
Copied
medipassPartnerSDK.renderCreateTransaction({
  platform: "virtual-terminal",
  providerNumber: "2429581T",
  invoiceReference: "MA1567",
  chargeAmount: "$100",
  paymentMethod: "payment-link",
  patient: {
    mobile: "0411111111"
  }
}, );

Phone payment

Copy
Copied
medipassPartnerSDK.renderCreateTransaction({
  platform: "virtual-terminal",
  providerNumber: "2429581T",
  invoiceReference: "MA1567",
  chargeAmount: "$100",
  paymentMethod: "phone",
  patient: {
    mobile: "0411111111"
  }
}, );
2024 Copyright © Tyro Health and Tyro Payments 2024. All right reserved.