且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

REST API-如何在DocuSign请求中修改电子邮件通知

更新时间:2021-11-16 22:30:36

请参阅 CreateEnvelope API文档

下面是在API请求中指定通知设置的示例。

Here is an example that specifies the notification settings in the API request.

POST https://demo.docusign.net/restapi/v2/accounts/175597/envelopes

{
 "emailBlurb": "Please sign to complete the document signature",
 "emailSubject": "Reminder and Expiration Test",
 "status": "sent",
 "documents" :[//dcouments go here],
 "recipients" :{//recipients go here},
 "notification":{ 
     "useAccountDefaults":"String content", 
     "reminders":{ 
         "reminderEnabled":"String content", 
         "reminderDelay":"String content", 
         "reminderFrequency":"String content" 
     }, 
     "expirations":{ 
         "expirationEnabled":"String content", 
         "expirationAfter":"String content", 
         "expirationWarn":"String content" 
     } 
   }
 }

可以找到REST API的旧文档此处

Old documentation for the REST API can be found here