[React Native] Getting started

Downloads

 

vsee-clinic-rn

VSee React Native Kit allows you to create your own telehealth mobile application in simple steps.

VSee Clinic Api Key and Access Key

Before you start, please follow these instructions to create your developer account:

Once you have a clinic account, obtain your API Key and Access Key here:

Installation

npm install vsee-clinic-rn

Init VSee Clinic Kit

You can initialize the VSee Clinic Kit in the App.js file like this:

import VSeeClinicRN from "vsee-clinic-rn"; // ... const vseeClinicKit = new VSeeClinicRN({ apiKey: 'b907e137607a24db0c5f39xxxx', apiSecret: 'f2db326936bae20b68bc2484xxxx', endpoint: 'https://api.vsee.me/api_v3/', accountCode: 'your-clinic-code', });

After successfully initializing the SDK, you can proceed to the next steps.

Â