I am integrating the docusing API using docusign python sdk, I have succssfully integrated the create_envelope functionality in my python application and I am able to send the envelope with a document to sign to user's email.
now lets say that user did not sign the document that I have sent and now after 2 weeks I want to send a reminder for that particular envelope and to that user's email.
How I can implement it using python sdk??
I have tried to explre Docusing Python SDK API reference but did not get any solution.
You need to know the envelope_id and which recipient(s) you want to remind, then the code in Python is this:
See blog post I wrote about this topic
Note: the term "resend" just means a reminder, it's not really doing it from scratch again, sorry if that is confusing.