2016-12-14 24 views

回答

0

您需要添加SendOnBehalfOf提交到X-的DocuSign的身份验证头。使用Node API封装器,您的代码如下所示:

var SendOnBehalfOf = '[email protected]'; 
var creds = JSON.stringify({ 
    Username: email, 
    Password: password, 
    IntegratorKey: integratorKey, 
    SendOnBehalfOf: SendOnBehalfOf 
}); 
+0

有关使用REST API的SOBO的更多信息:https://docs.docusign.com/esign/guide/authentication/sobo.html –