mrfatbat
mrfatbat

Reputation: 48

DocuSignAPI - Retrieving Details of Envelope Sender

I'm trying to find a way to get the email address of an envelope sender through the REST API. So far, no luck.

It's not in the envelope response, or in the recipients.

Any ideas of how I can find the envelope sender?

Kind Regards, J

Upvotes: 2

Views: 186

Answers (3)

Mark K
Mark K

Reputation: 196

Payloads from the DocuSign Connect service contain ACHolder and ACHolderEmail nodes which specify the name and email address of the sender, respectively. This may be another option for you.

Upvotes: 1

Litmas
Litmas

Reputation: 86

It is a little bit of a round-about way of doing this, but you can can use the envelope audit events call to get the UserId and then use that to retrieve the user's profile using https://na2.docusign.net/restapi/v2/accounts/accountID/users/**userIDhere

Another option that I utilize is to capture the information when the user sends the envelope and attach it as a custom field. This allows you to make the custom fields call to retrieve the information rather than digging through audit events and making additional calls.

Upvotes: 3

Rickey S
Rickey S

Reputation: 1244

Unfortunately, I do not believe there is a way to get the envelope sender email, however, with the Envelope Audit Events you are able to get the UserName of the sender.

Documentation on call

Upvotes: 2

Related Questions