dm.t.o.
dm.t.o.

Reputation: 46

DocusignAPI - Sign here tabs

I'm looking to integrate DocuSignAPI (using the .net library from Github) in our application. As the documents will be different, I'm looking into how I can add sign here tabs to different documents. I've looked at navigating to SenderViewUrl, but it needs authentication. Is there any recommended way to approach this?

Thanks

Upvotes: 3

Views: 3249

Answers (3)

Marco Altieri
Marco Altieri

Reputation: 3817

Another solution is to use an anchor. When you define the tab, you can specify a text contained in the document where you want to add the tab. It is very useful when the document to sign is always different and so you do not know the x and y but it contains the same words where the user has to sign.

It can help also to use an invisible text for the anchors (white font color on white background). In this way it is easier to specify the anchors and add the signature in the exact position.

Please refer to:

Anchoring Tabs

Code Walkthrough _ Anchor Tabs

Upvotes: 2

Peter Shank
Peter Shank

Reputation: 103

I had a similar goal. What worked for me was to start small by following the Quick Start step by step instructions here: https://www.docusign.com/developer-center/quick-start/first-api-call and then here: https://www.docusign.com/developer-center/quick-start/request-signatures

Their example API call does create a simple signature tab. The code fragment looks like this:

            "tabs": {
                "signHereTabs": [
                    {
                        "xPosition": "100",
                        "yPosition": "100",
                        "documentId": "1",
                        "pageNumber": "1"

I recommend you get their example code to work, and then build up other logic and features that you need for your application.

-Peter

Upvotes: 6

Inbar Gazit
Inbar Gazit

Reputation: 14005

Can you share some of the code that you have so far? The library supports adding tabs programmatically and you can have different tabs for different documents (as well as different recipients). As for authentication - API calls require it but the url to sign and send can work for about 20 minutes without authentication (once you make the API call to get it). Let's see if you can explain a bit more what you're doing and what issues you run into and I'll try to further help you.

Inbar

Upvotes: 0

Related Questions