1
votes

I am trying to re-send the envelope to Recipient through docusign API, but user is never receiving the email

URI - https://na2.docusign.net/restapi/v2/accounts//envelopes//recipients

The post is successful, i get a success message but user never receives a email.

There is no correction required. Its a reminder email, i know in the account there is a setting to send the reminder, but i am using nintex "send docusign document" activity to send the email to the user initially. So the default docusign reminder is not working and i using the api to send reminder.Any help???

1
Welcome to StackOverflow! Please "check" (accept) the right answer to your questions. And upvote all useful answers, including those for others' questions. Please ask a new question when you have one, don't add a question as a comment. Thanks!Larry K

1 Answers

3
votes

Use the "resend_envelope=true" query string parameter.

PUT 
https://{{env}}.docusign.net/restapi/v2/accounts/{{accountId}}/envelopes/{{envelopeId}}/recipients?resend_envelope=true

Answer already provided here.