Reputation: 71
I have set my envelope to receive envelope events notification. I am using Rails and the Docusign_REST
gem along with it.
By checking the Connect logs on the DocuSign system, I see that DocuSign has sent the notification, but my server has not processed it. Any additional information would be helpful.
event_notification: {
url: "<MY_REQUEST_URL>",
logging: true,
envelope_events: [
{
include_documents: false,
envelope_event_status_code: "Sent"
},
{
include_documents: false,
envelope_event_status_code: "Completed"
},
{
include_documents: false,
envelope_event_status_code: "Delivered"
}
]
},
Upvotes: 0
Views: 275
Reputation: 49104
The Basics
You're using a "webhook." You registered a url with DocuSign. The DocuSign platform will call your webhook url when your envelope(s) change state.
Diagnosing the problem
You know that DocuSign is attempting to send you (at your "webhook_url") the notification messages by looking at the "Connect" message log in the DocuSign Admin tool. -- And you can use the Admin tool's "Resend" button to easily resend a notification as a test.
Since you know DocuSign is trying to send to you, the problem is somewhere on your system. I would do the following to diagnose the issue:
Upvotes: 1