How to find if signer has completed the transaction
Wednesday, June 16, 2021 at 10:53amI have a border line case, let's say there are two signers. One signer signs but do not click confirm. How do you find if signer 1 has completed the signature ceremony or not.
I reviewed the signature package JSON, Which i get from getPackage call, and there is no difference between "signature done and not confirmed" state and "signature done and confirmed" state.
Question, what is the correct way of finding if any signer has completed signing in case of multiple signers.
Reply to: How to find if signer has completed the transaction
Wednesday, June 16, 2021 at 11:02amHi amunjal,
For OneSpanAPIObjects.Approval class, there should be two fields "accepted" and "signed":
public DateTime accepted;
public DateTime signed;
When the signer clicked to sign, the "accepted" should have a value. Further when signer finished signing all signatures in current document and clicked confirm, all these approvals should have the same "signed" value.
Duo
Reply to: How to find if signer has completed the transaction
Wednesday, June 16, 2021 at 11:17amok, thanks! Got it.