首页 > 解决方案 > 从现有信封文档创建新信封时出错

问题描述

我在我的应用程序中使用 C# docusign 客户端 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":"UNSPECIFIED_ERROR","message":"The value for column 'EnvelopeSourceTypeId' in table 'Envelope' is DBNull."

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

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

有人遇到过这个问题吗?任何建议...

标签: docusignapienvelope

解决方案


谢谢,看起来我们有一个错误,我们现在正在处理(内部我们称之为 EC-1468)。当我们修复它时,我会更新。另外,为您寻找解决方法,当我有东西时,我们会在这里更新。


推荐阅读