Docusignapi DocuSign事件通知回调不工作

Docusignapi DocuSign事件通知回调不工作,docusignapi,envelope,Docusignapi,Envelope,我正在尝试在信封中包含eventNotification回调的URL,如下所示: EventNotification eventNotification = new EventNotification(); try { eventNotification.Url = ConfigurationManager.AppSettings["DocusignCallbackURL"]; eventNotificatio

我正在尝试在信封中包含eventNotification回调的URL,如下所示:

  EventNotification eventNotification = new EventNotification();

        try
        {
            eventNotification.Url = ConfigurationManager.AppSettings["DocusignCallbackURL"];
            eventNotification.LoggingEnabled = "true";
            eventNotification.RequireAcknowledgment = "true";
            eventNotification.UseSoapInterface = "false";
            eventNotification.IncludeCertificateWithSoap = "false";
            eventNotification.SignMessageWithX509Cert = "false";
            eventNotification.IncludeDocuments = "true";
            eventNotification.IncludeEnvelopeVoidReason = "true";
            eventNotification.IncludeTimeZone = "true";
            eventNotification.IncludeSenderAccountAsCustomField = "true";
            eventNotification.IncludeDocumentFields = "true";
            eventNotification.IncludeCertificateOfCompletion = "true";

            envDef.EventNotification = eventNotification;

        }
        catch(Exception ex)
        {
            log.Error(ex);
        }

不幸的是,这似乎不起作用。我在我的应用程序日志中看不到任何内容,在DocuSign的日志中也看不到任何内容。有没有其他必要的东西使这项工作?我的帐户中是否有从信封中获取URL的设置?

您没有告诉DocuSign要通知哪些事件

您需要指定至少一个将接收通知的事件。有两组潜在通知。(如果愿意,可以同时使用这两个集合。)

请参见元素
envelopeEvents
recipientEvents


另外请注意,您的url必须以https://

开头,谢谢这是答案。