Skip to content

v3.17.0

Latest
Compare
Choose a tag to compare
@mehmet-yoti mehmet-yoti released this 17 Oct 14:22
d6e0021

Added Failure receipt error details

Added Failure reason info to IDV Get session results

Added Seperate Builder for Notification

var notification = new NotificationBuilder()
                   .WithUrl("https://example.com/webhook")
                   .WithMethod("POST")
                   .WithVerifyTls(true)
                   .Build();

               var policy = new PolicyBuilder()
                   .WithWantedAttribute(givenNamesWantedAttribute)
                   .WithFullName()
                   .Build();

               var sessionReq = new ShareSessionRequestBuilder().WithPolicy(policy)
                   .WithNotification(notification)