1

I'd like to use the Any Signer functionality, but our signing application uses embedded signing only. Can you use Any Signers in an embedded process?

The problem I run up against is that I can only get Any Signer working for non-embedded signers. That is, it only works for signers with no clientUserID. But with no clientUserID, I can't use embedded signing.

Has anyone got embedded Any Signers working or have a workaround?

Some further details:

  1. Our process is automated and embedded-only so that we can use our own email content and provide the option of signing via email or in-application frame to our end users.

  2. I've been able to get the Any Signer option working according to the DocuSign Quick Start Guide: https://www.docusign.com/sites/default/files/Quick%20Start%20-%20Using%20the%20Any%20Signer%20Option.pdf

    The problem is that this works only for non-embedded users.

  3. I'm able to create an envelope via the REST API, with Any Signer as follows:

    POST https://demo.docusign.net/restapi/v2/accounts/<account>/envelopes
    
    {
        "emailBlurb" : "Test Email Blurb",
        "emailSubject" : "Test Email Subject",
        "status" : "sent",
        "documents" : [{
                "documentId" : "1",
                "name" : "TestDoc.pdf",
            }
        ],
        "recipients" : {
            "signers" : [{
                    "recipientId" : 1,
                    "email" : "any@example.com",
                    "name" : "Any Signer",
                    "tabs" : {
                        "signHereTabs" : [{
                                "documentId" : "1",
                                "recipientId" : 1,
                                "name" : "SignHere_3",
                                "pageNumber" : 1,
                                "xPosition" : 81,
                                "yPosition" : 447,
                                "tabName" : "SignHere_3"
                            }
                        ],
                    },
                    "routingOrder" : 1,
                }
            ]
        }
    }        
    
  4. I've tried switching recipients as an alternative to Any Signer, with no luck. Please see this (unanswered) question:

    Switch signers on an In Process shared document

Community
  • 1
  • 1
user2843522
  • 43
  • 1
  • 5
  • 1
    No, that is not possible. You must have a clientUserId. – Andrew Aug 13 '14 at 18:18
  • Thanks Andrew. I thought that might be the case. Gah! Another dead-end. – user2843522 Aug 13 '14 at 18:44
  • Why do you want any signer? Do you have a requirement that the signer has access to the envelope in a specific account? Or is there other requirements? – Andrew Aug 13 '14 at 19:22
  • I want to delay the choice of which specific employee signs. I'm currently forced to specify all signers at the time of envelope creation. This causes problems because the employee is normally the last to sign and the initial employee may not be available after the other signers have signed. Any Signer would solve this problem, because another employee could sign instead. – user2843522 Aug 13 '14 at 19:57
  • Most people create a "blank" recipient that just sits there waiting to be removed so the last person can be added when needed. Add the final recipient, delete the "blank" one. – Andrew Aug 13 '14 at 19:58
  • I tried that, but whenever I add the final recipient, DocuSign won't include the tabs. The final recipient is stuck in a draft-like 'created' state. Nothing I do moves the signer to the necessary 'sent' state. The details are in the related question I listed in further details 4. – user2843522 Aug 13 '14 at 20:12
  • Posted an answer over there. – Andrew Aug 13 '14 at 23:49
  • possible duplicate of [Switch signers on an In Process shared document](http://stackoverflow.com/questions/24916310/switch-signers-on-an-in-process-shared-document) – Andrew Aug 14 '14 at 00:02

1 Answers1

0

The "any signer" feature is similar to a Distribution Group in your mail. It sends the email to all these people and any one of them can sign. When you use embedded signing, you have to specific who is the signer before you can generate the URL for the embedded signing session. This means you cannot use a signing group, but you have to have a specific signer (email and name) that would be used in that session.

Inbar Gazit
  • 12,566
  • 1
  • 16
  • 23