我需要能够使用c#api
设置envelopeId EnvelopeDefinition envDef = new EnvelopeDefinition();
envDef.EmailSubject = "Test Sign";
envDef.EmailBlurb = "Blurb Text";
envDef.EnvelopeId = Guid.NewGuid().ToString();
然而,
EnvelopeSummary envelopeSummary = envelopesApi.CreateEnvelope(accountId, envDef);
// print the JSON response
txtDSResults.Text = string.Format("EnvelopeSummary:\n{0}", JsonConvert.SerializeObject(envelopeSummary));
信封摘要清楚地显示已创建新的envelopeId并忽略提供的envelopeId。
答案 0 :(得分:3)
按设计,DocuSign将分配envelopeId。您可以使用信封上的custom field来跟踪系统识别信封的方式。如果您需要自定义字段,也可以搜索自定义字段。如果您希望它是隐藏值,请将show
属性设置为false
。