Reputation: 8678
I have an envelope with multiple signers and multiple documents. I need to check who has signed which document at a specific time. Functionnaly, this will allow to throw errors depending on who as signed or not the envelope (Eg. you can't modify that field after sigature of signer2).
I have tried to get the envelope GET /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}
(see doc) but can't see any informations about current signers signature status. Also tried GET /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/signature
(see doc), but I didn't get any further informations...
How can I check who has currently signed a document?
Upvotes: 0
Views: 115
Reputation: 412
Your best bet is to use Connect: https://developers.docusign.com/platform/webhooks/connect/
This will eliminate your need to poll an endpoint to see who has signed the envelope.
Upvotes: 1