docusign-api | Promise based DocuSign API for NodeJS | Runtime Evironment library
kandi X-RAY | docusign-api Summary
kandi X-RAY | docusign-api Summary
You must have a valid DocuSign auth token (password and integrator key) for the following:.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of docusign-api
docusign-api Key Features
docusign-api Examples and Code Snippets
Community Discussions
Trending Discussions on docusign-api
QUESTION
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:38You 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.
QUESTION
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:38You 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:
QUESTION
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:
- How do I apply a server template to envelope document in DocuSign API?
- Docusign API - Create envelope, apply template, prefill values
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:19Your 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.
QUESTION
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:33I 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.
QUESTION
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:49I've been working on something similar to this today myself and found the following solution seemed to work.
QUESTION
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:55DocuSign 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.
QUESTION
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:45You 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 thechunkedUploadId
andchunkedUploadUri
.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:
QUESTION
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:22Redirect 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.
QUESTION
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:52the 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.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install docusign-api
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page