2016-12-14 23 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 –