英文:
Notifications on envelope's status
问题
在Create Envelope请求的eventNotification/envelopeEvents部分中,应该发送一个我们想要收到通知的所有状态列表吗?如果不在那里包括的状态将不会通知到回调端点吗?
发送这个(jSON的eventNotification/envelopeEvents部分的示例)会防止DocuSign发送有关作废文件的更新吗?
"eventNotification": {
"url": "https://fakeurl.com",
"requireAcknowledgment": "false",
"includeDocuments": "true",
"includeDocumentFields": "true",
"envelopeEvents": [{
"envelopeEventStatusCode": "completed",
"includeDocuments": "true"
},
{
"envelopeEventStatusCode": "declined",
"includeDocuments": "true"
},
{
"envelopeEventStatusCode": "delivered",
"includeDocuments": "false"
},
{
"envelopeEventStatusCode": "sent",
"includeDocuments": "false"
}
]
}
英文:
In the eventNotification/envelopeEvents section of the Create Envelope request it should be sent a list of all the statuses that we want to be notified of? The statuses not included there won't be notified to the callback endpoint?
Sending this (sample of the eventNotification/envelopeEvents section of the jSON) would prevent DocuSign to send updates on voided documents?
"eventNotification": {
"url": "https://fakeurl.com",
"requireAcknowledgment": "false",
"includeDocuments": "true",
"includeDocumentFields": "true",
"envelopeEvents": [{
"envelopeEventStatusCode": "completed",
"includeDocuments": "true"
},
{
"envelopeEventStatusCode": "declined",
"includeDocuments": "true"
},
{
"envelopeEventStatusCode": "delivered",
"includeDocuments": "false"
},
{
"envelopeEventStatusCode": "sent",
"includeDocuments": "false"
}
]
}
答案1
得分: 0
是的,这是正确的。
请注意,使用“每封信封”方式有一些限制。
另一个选项是设置一个连接配置,该配置是针对整个帐户的,适用于所有信封,并具有更多功能。
有关更多信息,请参阅开发者中心 DocuSign 连接文档。
英文:
Yes, this is correct.
Note, that this means of using Connect "per envelope" has some limitations.
The other option is to set up a Connect Configuration, which is account-wide, for all envelopes, and has more functionality.
More information on The Developer Center DocuSign Connect Documentation.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论