我在应用程序中使用的是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."}
有人遇到过这个问题吗?任何建议...
答案 0 :(得分:0)
谢谢,看来我们有一个错误,我们现在正在处理(内部称为EC-1468)。修复后,我将进行更新。另外,为您寻找解决方法时,如果有什么需要我们也会在这里更新。