信封状态的通知

huangapple go评论62阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年6月8日 02:38:41
  • 转载请务必保留本文链接:https://go.coder-hub.com/76426183.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定