Setup a Service Client
To get started, we need to setup a service client for the Event library. If you are not familiar with how Recuro Health uses service clients, you can learn more here.
Configuration
Using the example below, swap the placeholder value for <code>SubscriptionKey</code> with the Subscription Key that was provided to you.
using WellViaSDK.Core;
using WellViaSDK.Visit;
// Variables
var config; // Created in earlier tutorial
var creds; // Created in earlier tutorial
var vstClient = new WellViaVisitServiceClient(config, creds);Our new service client has been assigned to a variable called <code>vstClient</code>. You will see this variable referenced throughout the rest of the Visit library guide.
Updated 7 months ago
