Embedding DocuSign, is that an option for me? - docusignapi

I'm using DocuSign to add eSignature to my requests and everything's working well. Right now I send my signature requests through email but sometimes I want to allow people to sign right away and not have to wait for an email, is there any way to do this? I saw a brief mention about something called Embedding DocuSign, is that an option for me?

Yes I know DocuSign well and this is absolutely possible. You are right in that you want to use Embedding, with Embedding you can generate URL tokens to access envelopes as a sender or recipient, and you can also use it to access the DocuSign Console.
The following two resources have all the info you need including working examples of Embedded functionality in 6 different languages. I'd start by reading about them on the DocuSign Developer Center in the Explore -> Features section
Then they have their API Walkthroughs which are EXTREMELY valuable for Embedding and other use cases. Check out the bottom three 3 squares for Embedding

Related

I want to send pdf or html to DocuSign for sign?

I need to send pdf to DocuSign than point the signature field to auto position it so signer can sign it.
I need to do it by api not manually by going to DocuSign website .
how to do it can you help me where I can I find this on DocuSign api ?
I don't want to use DocuSign template
Not sure what coding language you may be interested in using, but here is a code Example for Remote signing of either a PDF or HTML in seven different languages, including the original bash script.
You will want to start by getting a developer account and creating an integration key so you can make API calls. Once you have that, you can download the code in https://github.com/docusign/code-examples-java (this is Java, you can also find in C#, PHP, Ruby, Node and Python) and run them to see how they work.

Signing / Initialling multple pages - multple signers

We've implemented DocuSign in our e-Builder instance. It works okay on normal documents with the normal signing actions. We would now like to sign our CAD plans in a similar fashion. Some plans sets have over 100 pages. Each page needs to be initialed, signed, and stamped. So, placing all the signature "Tabs" is a bit time consuming. When the signer receives the plans, all of these should be positioned already right where we want them. Same x,y on each sheet.
What would be the best approach to placing these? Python?
Any suggestions would be appreciated. Thanks!
You can use either Python or C# (with VS 2017) to use the REST API and it has the functionality you want.
Here is some code example to help you:
https://developers.docusign.com/esign-rest-api/code-examples/set-envelope-tab-values
GitHub Python code can be found here:
https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg016_set_tab_values.py
GitHub C# code can be found here:
https://github.com/docusign/eg-03-csharp-auth-code-grant-core/blob/master/eg-03-csharp-auth-code-grant-core/Controllers/Eg016SetTabValues.cs
You will need to get a sandbox/demo account and get an integration key to make API calls.

DocuSign Console within iFrame

I'm currently trying to place the docusign console onto my website. My current method is using an iFrame but I'm wondering if that is secure and the optimal way of doing it. I was also wondering if the docusignAPI has a solution to that implemented already because I couldn't find one after playing around on the website with various code sources.
Preferably, users would be able to go to some part of the website, view the contract or document they need to sign on the website without having the leave the website. This includes viewing the document on the website as well such as using an iFrame allows.
Using iframes to host DocuSign embedded signing is not a good idea for a few reasons.
Typically to have a good experience it is recommended to use a large window.
Security Concerns. The users of your app wouldn't be able to see the DocuSign URL as well as the green check to know they're using a secure website which should make them feel more confident about using your integration.

Why docusign does not reflecting/giving weird behaviour?

I'm using Docusign for sending some document to sign by User.
I've created some templates and I'm prefilled some data before sending the documents for signing.
When I, modify the templates from docusign New web interface. I am facing some weird behaviour like my pre filled data is gone completely. After some time it comes again.
I don't know what to do with this.
Can someone please help?
Thanks in advance.
I'm sorry that you're having these issues. Are you using the DocuSign API or SDKs?
From your question, it sounds like you're using the DocuSign web tool, the NDSE (New DocuSign Signing Experience). For questions on the web tool, please use either the customer support department or the customer forum.
Thank you.

Automatically create GMail filters based on externally hosted word list

I'd like to easily import a word list, hosted on Github, to GMail as archive filters. Then later re-run this process to update the list.
The goal is to provide blacklists against common known Finnish spammers.
Possible options I have considered
Bookmarklet
Using GMail API
Creating GMail Labs extension (or whatever they are called)
What kind API options I have for maintaining GMail filter list? Programming language does not matter.
Optionally this would be a single click / single command operation e.g. from terminal or browser bookmark.
Today I was curious about this myself, although for a different reason... I found this info and thought I'd risk a bit of necromancy :)
You should take a look at Gmail settings API - filters
There is a Java wrapper

Resources