Calling the service

You can call the web service with the access token by passing the access token as a bearer token.

var client = new HttpClient
{
BaseAddress = new Uri(IONAPIBaseUrl)
};
client.SetBearerToken(this.AccessTokenTextBox.Text);
var response = client.GetAsync(this.WebServiceEndpoint.Text).Result;