我们正在使用围绕API的DocuSign Integrations Client .net包装器。我尝试以编程方式创建模板并设置TemplateRoles,然后加载控制台,以便用户可以附加文档并设置其签名选项卡。但是,在控制台中加载模板时,不会预设TemplateRoles。用户仍然必须选择" Place Holder"并输入一个RoleName ....以下是我的代码示例:
var express = require('express')
var multer = require('multer')
var app = express();
var upload = multer({
dest: 'uploadImages/'
});
app.post('/uploadImages', upload.any(), function (req, res, next) {
// req.files is the file uploaded, which multer will write to
// the dest folder for you. req.body will contain the text fields,
// if there were any.
res.json(req.files.file);
});
因此,一旦控制台加载,我就会看到"新模板"刚创造的。但是当我编辑它时,角色没有设置。
请帮忙......谢谢。
顺便说一句,我使用了DocuSign Integrations Client的完整开源代码集,因此我可以进入CreateTemplate方法调用并看到TemplateRoles正被添加到请求。