Docusign webhook listener - is there a retry?

懵懂的女人 提交于 2021-01-29 05:46:33

问题


I had a question on using a listener with the webhook architecture. If my site or page that will be doing the listening is done for any reason, what happens to the response that got posted? Does Docusign try to repost that info or is it lost for good? I'm assuming that Docusign posts and if nothing is there listening, then the response is gone.


回答1:


You have a few options

  1. During CreateEnvelope you can specify the requireAcknowledgment property in your eventNotification

requireAcknowledgment : When set to true, the DocuSign Connect service checks that the message was received and retries on failures.

See this answer for the retry rules


  1. You can use the ConnectEvents:retryForEnvelope api to republish Connect information for the specified envelope.

    PUT /v2/accounts/{accountId}/connect/envelopes/{envelopeId}/retry_queue

There are additional connect related Apis that you might be interested.

Documentation here



来源:https://stackoverflow.com/questions/42951220/docusign-webhook-listener-is-there-a-retry

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!