I recently switched from using embedded signing to "send by email" signing -- this is because I want DocuSign to manage the order of the signers and send them emails when each person has signed.
However now my Connect subscription does not work any more i.e. I don't get any notification messages to my listener's URL.
I decided to explicitly add the webhook by adding the eventNotification block to the envelope creation request but alas still nothing is coming in on my webhook.
When I used embedded signing I got XML feedback all the time so I can discount certificates I assume.
Does anyone know if non embedded signing and webhook feedback are mutually exclusive?
this is an example of my eventNotification block
"eventNotification": {
"url": "https://*******/connect/docusign",
"loggingEnabled": "true",
"requireAcknowledgment": "true",
"envelopeEvents": [
{
"envelopeEventStatusCode": "Sent",
"includeDocuments": "true"
},
{
"envelopeEventStatusCode": "Delivered",
"includeDocuments": "false"
},
{
"envelopeEventStatusCode": "Completed",
"includeDocuments": "true"
},
{
"envelopeEventStatusCode": "Declined",
"includeDocuments": "false"
},
{
"envelopeEventStatusCode": "Voided",
"includeDocuments": "false"
}
],
"recipientEvents": [
{
"recipientEventStatusCode": "Sent",
"includeDocuments": "false"
},
{
"recipientEventStatusCode": "Delivered",
"includeDocuments": "false"
},
{
"recipientEventStatusCode": "Completed",
"includeDocuments": "true"
},
{
"recipientEventStatusCode": "Declined",
"includeDocuments": "false"
},
{
"recipientEventStatusCode": "AuthenticationFailed",
"includeDocuments": "false"
},
{
"recipientEventStatusCode": "AutoResponded",
"includeDocuments": "false"
}
],
"useSoapInterface": "false",
"includeCertificateWithSoap": "false",
"signMessageWithX509Cert": "false",
"includeDocuments": "true",
"includeEnvelopeVoidReason": "true",
"includeTimeZone": "true",
"includeSenderAccountAsCustomField": "true",
"includeDocumentFields": "true",
"includeCertificateOfCompletion": "true"
}