问题
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
- 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
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