Get signing status using signerID
Thursday, November 22, 2018 at 06:10amIn our code, we are using the change signer feature.
.CanChangeSigner()
Once a new signer is assigned, the eSL server generates random signer ID.
How can we get the signerID using .net to get the signing status of this signer.
Please note that we can't use callbacks in our environment
Reply to: Get signing status using signerID
Thursday, November 22, 2018 at 06:30amReply to: Get signing status using signerID
Thursday, November 22, 2018 at 06:29ampublic String GetSignerIdByEmail(String apiKey, String baseUrl, String packageId, String email) String signerId = new _11_22().GetSignerIdByEmail("your_api_key", "https://sandbox.esignlive.com", "T2NYsTrrrrccJqwABfGLTGo9mNk=", "[email protected]"); Debug.WriteLine(signerId);Once you retrieve the signer ID, you can call SDK functionseslClient.GetSigningStatus(packageId, signerId1, null);to get signing status. Hope this could help! Duo