## 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. New payment card ```js medipassPartnerSDK.renderCreateTransaction({ platform: "virtual-terminal", providerNumber: "2429581T", invoiceReference: "MA1567", chargeAmount: "$100", paymentMethod: "new-payment-card", patient: { mobile: "0411111111" } }, ); ``` Payment link payment ```js medipassPartnerSDK.renderCreateTransaction({ platform: "virtual-terminal", providerNumber: "2429581T", invoiceReference: "MA1567", chargeAmount: "$100", paymentMethod: "payment-link", patient: { mobile: "0411111111" } }, ); ``` Phone payment ```js medipassPartnerSDK.renderCreateTransaction({ platform: "virtual-terminal", providerNumber: "2429581T", invoiceReference: "MA1567", chargeAmount: "$100", paymentMethod: "phone", patient: { mobile: "0411111111" } }, ); ```