简体   繁体   中英

Docusign void envelopes and send reminder functionality

I am trying to integrate docusign in our application, I am using a developer account to go through the various funtionalities. Is there an endpoint for voiding envelopes and sending reminders to various recipients for a particular envelope

Two different things.

Voiding - https://www.docusign.com/blog/dsdev-common-api-tasks-void-an-envelope the endpoint is the UpdateEnvelope endpoint but you have to provide voidReason in the JSON in addition to change to status to voided like this:

{
  "status": "voided",
  "voidedReason": "The reason for voiding the envelope"
}

Sending reminders. This can be done ahead of time, on a schedule , or ad-hoc. Ad-hoc I assume is was you had in mind, so in theory, you can make an empty update to an envelope with the option to resend_envelope=true option. That will just send it again, not sure if you consider that a reminder or not.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM