Forums

I noticed that our callbacks were not working in the sandbox and when I logged in to take a look at the callback settings, I noticed the callback key was no longer there. I see that OAuth 2.0 was added and there is an option to select Basic which seems to be what was there before. My question is, if we had a callback key configured, is it going to default to Basic and leave the key that was there before? As it stands now, it is clearing the Callback Key and setting the auth method to None.

Example code on how to register for callback event notifications.
Rate this Code Share
Downloads
4
Source type
External website - Your website or git repository
Forums
I'm having difficulty understanding the inclusion of the callback key described here: http://docs.e-signlive.com/doku.php?id=esl:e-signlive_guide_event-notification private EventNotificationConfig eventNotificationConfig; public string URL = "http://my.url.com"; public string KEY = "abc"; // Register for event notification eslClient.EventNotificationService.Register(EventNotificationConfigBuilder.NewEventNotificationConfig(URL) .WithKey(KEY) .ForEvent(EVENT1) .ForEvent(EVENT2) Is the "KEY = 'abc'" the api key?