我们希望使用DocuSign REST创建新的DocuSign品牌,并且希望将新的品牌配置文件设置为发送/签名的默认设置。我们可以使用REST创建新品牌,但是我们不能将其设置为默认。我们没有在API中找到任何将品牌创建/设置为默认的选项。谁能帮助我们如何创建/设置品牌为默认。
谢了,Jigar
发布于 2016-05-02 15:10:53
目前无法使用REST设置默认品牌,但在发送时可以指定每个信封brandId。
NodeJS示例:
var envDef = new docusign.EnvelopeDefinition();
// Here is where you'll set the brandId, after creating your Envelope Definition
envDef.setBrandId('...');
// ... additional Envelope creation steps here
envelopesApi.createEnvelope('account_id', envDef, null, function (err, envelopeSummary, response) {
if (err) {
return next(err);
}
console.log('EnvelopeSummary', envelopeSummary);
});有关基本发送的示例,请参见email.js#L93。
https://stackoverflow.com/questions/36856880
复制相似问题