DocuSign品牌

时间:2016-04-26 06:28:26

标签: docusignapi branding

我们希望使用DocuSign REST API创建新的DocuSign品牌,并且还希望将新品牌配置文件设置为发送/签名的默认值。我们可以使用REST API创建新品牌,但我们无法将其设置为默认值。我们在API中未找到任何选项来创建/设置品牌为默认值。任何人都可以帮助我们创建/设置品牌作为默认值。

DocuSign REST API

谢谢, Jigar

1 个答案:

答案 0 :(得分:0)

目前无法使用REST API设置默认品牌,但可以在发送时指定每个信封品牌ID。

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);
});

有关基本发送的示例,请参阅https://github.com/docusign/docusign-rest-recipes/blob/node-sdk/request_sig_via_email/request_sig_via_email.js#L93