Docusignapi 从现有信封文档创建新信封时出错

Docusignapi 从现有信封文档创建新信封时出错,docusignapi,envelope,Docusignapi,Envelope,我正在应用程序中使用C#docusign client v4.0。我正在从现有信封创建新信封 var envDef = new EnvelopeDefinition { EmailSubject = "Email Subject", Status = "sent", EnvelopeId = envelopeId }; var envelopeSummary = a

我正在应用程序中使用C#docusign client v4.0。我正在从现有信封创建新信封

  var envDef = new EnvelopeDefinition
        {
            EmailSubject = "Email Subject",
            Status = "sent",
            EnvelopeId = envelopeId
        };
            var envelopeSummary = await envelopesApi.CreateEnvelopeAsync(await AccountAsync(), envDef);//this line gives error
/“errorCode”:“未指定的错误”,“消息”:“表“信封”中“信封资源PEID”列的值为DBNull。”

从现有信封创建信封时,突然出现错误

Error calling CreateEnvelope: {"errorCode":"UNSPECIFIED_ERROR","message":"The value for column 'EnvelopeSourceTypeId' in table 'Envelope' is DBNull."}

有人面对过这个问题吗?任何建议…

谢谢,看起来我们有一个bug,我们正在处理它(内部称之为EC-1468)。我们修好后我会更新的。另外,为您寻找解决办法,我们会在这里更新时,我有一些东西

知道要花多长时间吗?等等还不知道,我会告诉你的。现在你可以做的另一件事是使用模板而不是信封。该API工作正常。对于较低版本,它工作正常。当更新nuget版本时,会出现问题。这可能是因为较低版本使用API 2.0,较新版本使用API 2.1。如果API 2.0适合您,您现在可以使用它