Questions tagged [docusignapi]

This tag can be used for programming related questions which may involve implementation of DocuSign technologies. Questions that do not involve programming are not on-topic. DocuSign System of Agreement products include eSignature, Click, Notary, CLM (contract lifecycle management), Rooms, and more.

This tag is for questions and knowledge sharing surrounding the use of DocuSign's REST or SOAP APIs. DocuSign's APIs can be integrated into any website, app, or embedded system that can make HTTP requests.

Main Resource: DocuSign Developer Center

Language-specific libraries: DocuSign GitHub Repository

Common tasks you can accomplish with the DocuSign APIs:

  • Request legally binding signatures on virtually any type of document
  • Embed document signing into your app or website
  • Collect form-data from recipients
  • Track documents in real-time
  • Enable multi-factor recipient authentication
  • Much more...

See the DocuSign DevCenter page for code samples showing common API workflows like sending documents for signature, embedded signing, polling for status; API reference documentation and more.


Tag usage

The tag is used for programming related questions with DocuSign technologies.

For non-programming DocuSign questions, please visit the DocuSign Community


5986 questions
3
votes
2 answers

Saved Docusign Document PDF's come out corrupted

I created a listener page that receives the Docusign webhooks. Everything is working as far as pulling data from the webhook, but when I cycle through the DocumentPDF's, it creates the PDF files but they are corrupted and cannot be opened (when I…
RVille
  • 31
  • 4
3
votes
1 answer

Docusign REST API: Get all Envelope

I am making query for the rest API for getting all envelopes. Following are documents in UI When I query using envelop list changes with proper from date and to date and account id It gives me only 1st and last document as below.
Manish Pansiniya
  • 537
  • 4
  • 14
3
votes
1 answer

Docusign recipientid changes after sending

I added 2 recipients to an envelope via the api i gave them recipient ids of '111' & '222' respectively. I pre-populated the tags associated with them. The envelopes, when received for signature, were populated as expected, but When I examined the…
Nick
  • 31
  • 3
3
votes
0 answers

PHP DocuSign API - Set carbon copies (email)

I'd like to CC someone with the DocuSign PHP API. This is the code I have at the moment. $all_cc = []; $cc = new \DocuSign\eSign\Model\CarbonCopy(); $cc->setEmail("email@domain.com"); $cc->setName("Bob Smith"); $cc->setNote("This is a note for the…
MemUya
  • 347
  • 3
  • 13
3
votes
2 answers

Unable to create envelope with editor and signer as embedded recipients

I will be using my app credentials to create a document which should be edited by a editor recipient and should be signed by a signer recipient. It is failing with the below error though the recipient editor has a docusign account. …
3
votes
2 answers

Pre-populating Template Default Tabs with REST API

Unable to pre-populate default tabs for Company and Title, but textTabs user_name works just fine. I can also change locked property of the fields but not the value. params = { "accountId" : ACCOUNT_ID, "emailSubject": "Test Sign", …
Dennis
  • 51
  • 4
3
votes
1 answer

Docusign API - Views/Recipient with In Person Signing

I have everything working for the views/sender, and I have envelopeId/recipients working - so I know every piece of data that I think I need. In my envelope I have 2 inPersonSigners. The first is a "client" always, and the second is an employee,…
Focus
  • 31
  • 1
3
votes
1 answer

Docusign API integration - how to send multiple templates and populate values

I have a pretty basic question about how the Docusign API works. I tried finding the answer myself but was quickly overwhelmed by the massive amount of information, much of which is outdated, in the support center. Here’s what I’m trying to do: I…
wusauarus
  • 305
  • 4
  • 12
3
votes
1 answer

DocuSign: Where does documentId come from when creating envelope from template?

I am creating envelopes from a template. I need to know the documentIds that will be created in the envelope ahead of time so I can deal with a strange special case prefilling radio buttons. (I can explain why in more detail, but it's not really…
emulcahy
  • 1,055
  • 3
  • 18
  • 28
3
votes
2 answers

Access token limit in docusign (node module)

I have using docusign node module for using embedded signing flow. Things have been working fine but suddenly we have started seeing errors such as access token limit exceeded. Here is the error Description: Maximum number of access tokens…
alter
  • 4,320
  • 7
  • 31
  • 36
3
votes
2 answers

texttabs not being set using rest api create envelope

Wondering what I am missing or doing wrong here as the value for the tabs are not being set when creating the envelope. In the JSON code below I am trying to default values for the text tabs for recipient 5. { "emailSubject":"Allowance…
Paul S.
  • 149
  • 1
  • 11
3
votes
2 answers

How to add sms Authentication to template roles?

Using the DocuSign Rest API I'm creating an envelope from a template that has one recipient role that has to sign. On the template creation for that recipient role I have enabled Identity Check -> SMS Auth $. It works fine when I try to sent the…
FelisiaM
  • 148
  • 1
  • 2
  • 9
3
votes
1 answer

Docusign Connect API : Not receiving request parameters in Rails 4 app

I have a docusign account, where I am creating an envelope of multiple/single documents and trying to send them through "Connect" to a particular endpoint/url after signing of the documents is done. Now I have two applications for the endpoint url.…
Vipul Kumar
  • 259
  • 1
  • 2
  • 12
3
votes
1 answer

How does DocuSign work with WordPress?

I have an e-commerce website and now I want to integrate the DocuSign with it. The purpose is everyone has to sign the digital document before placing the order. I have used WooCommerce plugin for the shop page. So how to integrate the DocuSign API…
3
votes
1 answer

How to download multiple envelops from the docusign

We have integrated DocuSign into our application and users are filling all the info and completing the docusign process. Also, we have implemented the functionality using docusign soap API to download envelop that status completed. But now we want…