简体   繁体   English

Docusign发件人通知REST API

[英]Docusign Sender Notifications REST API

I am trying to set some of the senders notifications using json REST API and C# but it is not working, what am I doing wrong, I have: 我正在尝试使用json REST API和C#设置一些发件人通知,但是它不起作用,我在做什么错,我有:

{
"userSettings":[
{
"value":"false",
"name":"allowSendOnBehalfOf"
}
],
"signerEmailNotifications":{
"envelopeActivation":"false",
"envelopeComplete":"false",
"carbonCopyNotification":"false",
"certifiedDeliveryNotification":"false",
"envelopeDeclined":"false",
"envelopeVoided":"false",
"envelopeCorrected":"false",
"reassignedSigner":"false",
"purgeDocuments":"false",
"faxReceived":"false",
"documentMarkupActivation":"false",
"agentNotification":"false"
},
"senderEmailNotifications":{
"envelopeComplete":"false",
"senderEnvelopeDeclined":"false",
"withdrawnConsent":"false",
"recipientViewed":"false",
"deliveryFailed":"false"
}
}

For some reason you have to set something in the userSettings node to set something in the following node signerEmailNotifications . 出于某种原因,您必须在userSettings节点中设置某些内容,才能在以下节点的signerEmailNotifications进行设置。

Select a setting that you don't want to mess with (such as enableDSPro, which is the retired version of the DocuSign Desktop Application). 选择一个您不想弄乱的设置(例如enableDSPro,这是DocuSign桌面应用程序的退休版本)。

The following will work for you 以下将为您工作

{ 
  "userSettings":[{
    'name':'canSendEnvelope',
    'value':null
  }],
  "signerEmailNotifications": {
    "envelopeActivation": false,
     "envelopeComplete": false
  },
  "senderEmailNotifications": {
    "envelopeComplete": false
  }
}

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

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