#
Configuration
Now that you have installed the SDK and obtained your API key, it's time to configure it. It is really simple - you can refer to the example below.
import { HealthboxClient, HealthboxCountry, HealthboxLanguage } from '@flushbg/myhealthbox-sdk';
const client = new HealthboxClient({
apiKey: 'you_got_me_from_RapidAPI',
defaultCountry: HealthboxCountry.USA,
defaultLanguage: HealthboxLanguage.English
});
It accepts the following properties:
🎉 Voilà! Your SDK is configured and ready to use. 🎉