Get Signing Status directly
Thursday, March 14, 2019 at 06:00amHey team,
I noticed that you provide a signing status function to get signing status per signer:
com.silanis.esl.sdk.SigningStatus signerStatus1 = eslClient.getSigningStatus(packageId, new SignerId(signerId1), null);
But the concern here is, we don't want multiple calls to get signing status all recipients. We are looking for a way returning all signing status for each signer directly. Any ideas on this?
Thanks,
Reply to: Get Signing Status directly
Thursday, March 14, 2019 at 07:59amReply to: Get Signing Status directly
Wednesday, March 26, 2025 at 10:09amThe signerId1 is 'signer1'. I get an error when I try the method from above: "new SignerId(signerId1)"
If I enter in the signer id that I retrieved from the API for this signer1, it works fine:
OneSpanSign.Sdk.SigningStatus signerStatus0 = OssClient.GetSigningStatus(packageId, "a48234e3-d2cd-4208-8647-43b8eb762c7c", null);
How do I get the "new SignerId(signerId1)" to work?
Reply to: Get Signing Status directly
Wednesday, April 16, 2025 at 03:15pmHi Chuck,
When adding signer in transaction you can specify a custom signer id such as signer1 using the method withCustomId(). In case this is not specified then a random signer id is assigned by the system which is unique ID per transaction. In later case you will need to always retrieve the signerid as it is randomly generated every time the signer is added to transaction.