简体   繁体   English

Docusign 无效信封和发送提醒功能

[英]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.我正在尝试将 docusign 集成到我们的应用程序中,我正在通过各种功能使用 go 的开发人员帐户。 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:无效 - https://www.docusign.com/blog/dsdev-common-api-tasks-void-an-envelope端点是UpdateEnvelope端点,但您必须在 Z0ECD11C1D7A287401D148A23BBD7A2voidedF8Z 中提供voidReason以更改为像这样:

{
  "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.我认为临时是您的想法,因此理论上,您可以使用resend_envelope=true选项对信封进行空更新。 That will just send it again, not sure if you consider that a reminder or not.那只会再次发送,不确定您是否认为这是一个提醒。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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