Hattabitos

Get signing status using signerID

0 votes
In 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

Approved Answer

Reply to: Get signing status using signerID

0 votes
+attachment

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Attachments
11_22.zip781 bytes

Reply to: Get signing status using signerID

0 votes
Hi there, In attachment, there's some code snippet allowing you to get signer ID by the new email. This is the definition and sample usage of the function:
public 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 functions eslClient.GetSigningStatus(packageId, signerId1, null); to get signing status. Hope this could help! Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off