When I make the following call, it errors off however the error object is blank and contains an empty string for the message. How can I determine what the actual error is configSettings.ClientId = clientId; configSettings.ClientSecret = clientSecret; System.Net.ServicePointManager.Expect100Continue = true; System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; System.Net.ServicePointManager.DefaultConnectionLimit = 9999; APIContext apiContext = Configuration.GetAPIContext(configSettings);
... View more