We have integrated DocuSign for a multi-signer workflow with 3 signers using our Node.js application. In most, cases, the signing process work as follows:
Signer 1 → Signer 2 → Signer 3 (all signers complete the document one after the other)
This is working fine for scenarios where all 3 signers are required.
However, we have a specific use case where:
1. After Signer 1 completes the signing, we need to
- update the second signer’s information dynamically and Skip Signer2(in certain conditions).
- Continue directly to Signer 3 to collect their signature
2. In other cases, we want to proceed as usual, where all 3 signers complete the document in sequence.
Questions:
1. Is there a way to conditionally skip a signer(Signer 2) after the first signer has completed the signing process?
2. Can we update the document or signer information dynamically(ex: update signer name, date of sign)
3. What is the recommended approach for implementing such conditional workflows with DocuSign’s API’s?