docusign-esign-node-client
docusign-esign-node-client copied to clipboard
The Official DocuSign Node.js Client Library used to interact with the eSign REST API. Send, sign, and approve documents using this client.
Right now, there's some pretty cool generic logic setup for applying the appropriate headers to various ApiClient requests automatically via the `ApiClient.applyAuthToRequest` function; however, the `auth` object that it tries...
We are trying to download pdfs, I am sending binary data to frontend, however as soon as we open downloaded pdf, it pops up with error "We cant open this...
Since Monday we are facing this issue when trying to download documents: ```"error": "{\"errorCode\":\"COMBINED_PDF_DOWNLOAD_NOT_ALLOWED\",\"message\":\"Setting Enable Combined PDF Download for SBS envelopes is turned off\"}"``` We didn't make any new changes...
What is the correct way to set base64 string in updateDocument? From the documentation it only accepts 3 required parameters, (account id, envelope id, document id) Here is my code....
I'm trying to work through setting up JWT authentication and your documentation [here](https://developers.docusign.com/platform/auth/jwt/jwt-get-token/) says that the function `sendJWTTokenRequest` can be used to automate JWT auth. However, it [does not seem](https://github.com/docusign/docusign-esign-node-client/blob/8515bd623ab16416869f74af90bdb8637babf919/src/ApiClient.js#L68-L93)...
Link to PR: https://github.com/docusign/docusign-esign-node-client/pull/288 Use case: when using a base64 encoded string, the value read from the location path when the user is redirected is not always the same as...
e.g. when using an base64 encoded string. Like the `redirectUri`, the `state` is an user input and as such not safe to be used in an url without escaping certain...
Hi, We're using webpack, to minimize the size of the lambda we've got that consume the DocuSign client and I've had the same problem as https://github.com/docusign/docusign-node-client/issues/214. Digging into the src,...
There is the [generateAccessToken](https://github.com/docusign/docusign-esign-node-client/blob/master/src/ApiClient.js#L741) method of the [ApiClient](https://github.com/docusign/docusign-esign-node-client/blob/master/src/ApiClient.js) for generating an access token from the authorization code. There is also the [platform documentation](https://developers.docusign.com/platform/auth/authcode/authcode-get-token/)'s "Use refresh tokens" section that says that...
Add a new `refreshAccessToken` method to the `ApiClient`, addressing #281. Works exactly as the `generateAccessToken` with the exception that it expects a refresh token instead of an authorization code. The...