docusign-api | Promise based DocuSign API for NodeJS | Runtime Evironment library

 by   hadynz JavaScript Version: 0.0.1 License: MIT

kandi X-RAY | docusign-api Summary

kandi X-RAY | docusign-api Summary

docusign-api is a JavaScript library typically used in Server, Runtime Evironment, Nodejs applications. docusign-api has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can install using 'npm i docusign-api' or download it from GitHub, npm.

You must have a valid DocuSign auth token (password and integrator key) for the following:.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              docusign-api has a low active ecosystem.
              It has 6 star(s) with 1 fork(s). There are 3 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 3 open issues and 0 have been closed. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of docusign-api is 0.0.1

            kandi-Quality Quality

              docusign-api has no bugs reported.

            kandi-Security Security

              docusign-api has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              docusign-api is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              docusign-api releases are not available. You will need to build from source code and install.
              Deployable package is available in npm.
              Installation instructions are not available. Examples and code snippets are available.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of docusign-api
            Get all kandi verified functions for this library.

            docusign-api Key Features

            No Key Features are available at this moment for docusign-api.

            docusign-api Examples and Code Snippets

            No Code Snippets are available at this moment for docusign-api.

            Community Discussions

            QUESTION

            Displaying different values in same DocuSign tab
            Asked 2021-Jun-04 at 17:38

            Is there any way to pre populate a locked text tab with different values for different recipients using docusign-api?

            I passed the same tab with different values for different recipients but the values just overlap each other

            ...

            ANSWER

            Answered 2021-Jun-04 at 17:38

            You can use the document visibility feature for this. That would require the document to be duplicated for each user and then the tabs for each document would be only visible for the user that can view that document.

            Source https://stackoverflow.com/questions/67832341

            QUESTION

            Docusign - Can We use personal plan, and be able to get consent from external users for SOBO?
            Asked 2021-May-06 at 17:38

            We are building a project, where the admin consent is required.

            Since it seems that to get consent from an external user for SOBO using JWT. We will require an admin consent as mentioned here and here.

            But to access it, we have to contact support and enable it in sandbox as mentioned here

            When this will go in production, will this work in the Personal API Plan or the starter pack

            ...

            ANSWER

            Answered 2021-May-06 at 16:38

            You can get consent from any user in any plan without using admin consent. It's simply called Individual Consent and all you have to do is take the user to a URL that looks like this:

            Source https://stackoverflow.com/questions/67420553

            QUESTION

            Apply Template using .NET SDK
            Asked 2020-Oct-06 at 23:19

            I'm trying to apply a template (not use a template) using the .NET SDK and I can't seem to get it. I have seen one or two other articles on here but neither is using the SDK. Can anyone help me solve this using the SDK?

            My situation is this: I have a template defined that contains all of my anchor tags with placement info. When I apply the template via the UI, it works fine and the tags get placed appropriately. When I upload the same document via the API, the tags are not applied.

            I have tried to replicate what is shown in these articles using Composite Templates with no success:

            In one of the articles, the OP said the envelope needed to be a Draft. I tried that, but then I haven't been able to change it to "sent" after that.

            Here's some of the relevant code from my ASP.NET Web Forms test project. In this project, I'm using a asp:FileUpload control to grab the file contents and then I call the SendFileToDocusign() method:

            ...

            ANSWER

            Answered 2020-Oct-06 at 23:19

            Your code has to handle the recipients correctly. The roleName must match between recipients pre-defined in the template and the ones you add in your code. I don't see in your code that part. The example you use is for composite template. The relevant code for this is in a regular template example but it's the same.

            https://github.com/docusign/code-examples-csharp/blob/master/launcher-csharp/eSignature/Controllers/Eg009UseTemplateController.cs

            Source https://stackoverflow.com/questions/64228971

            QUESTION

            Which is the error returned when a DocuSign refresh token is expired?
            Asked 2020-Jul-09 at 21:07

            My team is working in an integration between an ASP NET MVC App and DocuSign using Authorization Code Grant with the following scopes: signature and extended.

            Based on the documentation and this question, I know the refresh_token typically expires in around 30 days, but it may change at any time.

            So, as I can't know for sure when a refresh_token will expire (so I can have a recurrent Job to update it, for instance), and since for me to have an invalid refresh_token I'd have to wait about 30 days to see which error it returns, so I can handle it, my question is...

            Does anyone know which is the error returned when trying to refresh an access_token and the refresh_token is expired? Would that be Invalid Grant? What exact error code or identifier it returns so I can handle it?

            ...

            ANSWER

            Answered 2020-Jul-03 at 21:33

            I would recommend that you don't make assumptions about error messages and conditions under which you get them. To solve this problem, I would implement code that attempt to use the refresh token when you original access token does not work (error) and attempts to ask the user to start again the login process when the refresh token does not work (error). The reason (expired, password modified, access revoked or even some other bug) does not matter. For example, if the reason is that consent to the app was revoked - the process of authorization code grant would ask the user for consent again. So this way - you handle it all without having to have special code for each case. Lastly, it's possible error messages will change and even the logic for when you get them may change for all sorts of reasons. Robust applications handle all errors correctly.

            Source https://stackoverflow.com/questions/62722812

            QUESTION

            How to pre-fill the input field and pass the same through composite template while creating envelope
            Asked 2019-Sep-23 at 15:49

            I have been trying to pre-populate the data into form fields created by admin during template creation by making call to server template and adding tabs with the values

            I have found this links: Passing template tabs value while creating envelope Retrieving information from a signed document DocuSign API

            But it is not helping much as i'm trying the php code as shown below:

            ...

            ANSWER

            Answered 2019-Sep-23 at 15:49

            I've been working on something similar to this today myself and found the following solution seemed to work.

            Source https://stackoverflow.com/questions/56703710

            QUESTION

            DocuSign multiple embedded signers
            Asked 2019-Feb-12 at 18:55

            With reference to two existing questions on this topic(here and here), I'm still confused and I would like to reopen this topic.

            So the flow in my app is the following: 1. Seller goes to the buyer, they agreed on the order and they complete the order; 2. Immediately after they click on Complete Order, an embedded signing page is opened and both seller and buyer have to sign the order within the same page

            Is this possible without opening two recipients views - one for the buyer and one for the seller? Can we achieve this just by opening one view where both recipients can sign the order?

            I tried to add a single recipient with two signing boxes, but when I change the signature in one box, automatically the second one is changed, so we cannot achieve this flow.

            Thank you!

            ...

            ANSWER

            Answered 2019-Feb-12 at 18:55

            DocuSign will not allow you to make a single session for two unique signers. You will need to define two separate recipients and generate a different signing view for each one.

            After a user clicks 'Complete Order', your application will need to generate the signing session for one signer (you'll need to determine who goes first). Once they've signed, they'll be sent to the redirect URL - at that point your application can generate the second signing session URL.

            Source https://stackoverflow.com/questions/54647609

            QUESTION

            DocuSign eSign RestApi ChunkedUploads
            Asked 2018-Apr-17 at 17:45

            I have a question about ChunkedUploads.

            Currently I am working on the solution for this post:

            DocuSign API Envelope creation timed out

            Can anyone explain how to send an EnvelopeDefinition in chunks ?

            Currently I call:

            ...

            ANSWER

            Answered 2018-Apr-17 at 17:45

            You break the base64 (I tried with base64) string into multiple parts, each part is a sequence. Then below are the API calls seq:

            • Create ChunkUpload - POST /v2/accounts/{accountId}/chunked_uploads, this returns the chunkedUploadId and chunkedUploadUri. chunkedUploadId will be used for more chunkupload related calls, like update more stream on the chunk or for committing the chunkupload. chunkedUploadUri will be used to add document in the create envelope call, it will be referred in remoteUrl inside "document" node.

            Response will be like:

            Source https://stackoverflow.com/questions/49875782

            QUESTION

            Get envelope URL
            Asked 2017-Sep-01 at 20:47

            Is there a way to use the API to get the URL for a user to view a particular envelope on the DocuSign web site? I'm not trying to use the embedded signing experience, so the various envelope "views" provided by the API are not the desired URLs. The goal is provide a link in a custom web application that when clicked would show the envelope based on the user's sign-in to the Docusign web site, redirecting to the Docusign login page if necessary (the "console" URL provides the desired UI but does not force this kind of normal website authentication).

            I've seen a couple other posts, including url for managing an evelope and get document url. The latter one looked promising (though in my case the desired URL is for the overall envelope, not a specific document), but doesn't provide a code example for constructing the complete URL.

            I'm using C#, with code that includes the following (based on the get envelope API):

            ...

            ANSWER

            Answered 2017-Aug-17 at 16:22

            Redirect the user to the Docusign web app

            The app should prompt the user for credentials and show the envelope details page if the user has access to the envelope.

            Source https://stackoverflow.com/questions/45738785

            QUESTION

            DocuSign API to send instant reminder email to recipient along with message
            Asked 2017-Feb-14 at 17:08

            I am referring to DocuSign API to send instant reminder email to pending recipients. But in this there is no way to send reminder message to recipient.

            Can we have such functionality available in API to send reminder message also to recipient?

            We have requirement to send message as part of reminder email. Is there any customization available on account for the same in DocuSign?

            ...

            ANSWER

            Answered 2017-Feb-14 at 13:52

            the reminder email and it's contents will be the same as the initial email they receive to sign the document. By default the only visual differentiator that this is a reminder email is the word REMINDER which is pre-pended to the email subject.

            Source https://stackoverflow.com/questions/42222588

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install docusign-api

            You can install using 'npm i docusign-api' or download it from GitHub, npm.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            Install
          • npm

            npm i docusign-api

          • CLONE
          • HTTPS

            https://github.com/hadynz/docusign-api.git

          • CLI

            gh repo clone hadynz/docusign-api

          • sshUrl

            git@github.com:hadynz/docusign-api.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link