0

我想实现发送签名请求和签署文件。你知道这是否很难做到吗?你能给我访问 DocuSign api 的资源吗?

4

1 回答 1

0

官方文档:REST API 配方:通过电子邮件请求签名提供了有关如何发送不同语言的签名请求的很好的示例。我建议您查看 Node.js 示例:

var url = "https://demo.docusign.net/restapi/v2/login_information";
var body = "";  // no request body for login api call

// set request url, method, body, and headers
var options = initializeRequest(url, "GET", body, email, password);

// send the request...
request(options, function(err, res, body) {
    if(!parseResponseBody(err, res, body)) {
        return;
    }
    baseUrl = JSON.parse(body).loginAccounts[0].baseUrl;
    next(null); // call next function
});
于 2017-09-11T14:55:25.310 回答