Blog
Home/

Trending Topics: Latest from our forums (December 2023)

Inbar Gazit
Inbar GazitSr. Manager, Developer Content
Summary3 min read

See how our most popular recent threads on Stack Overflow can help you solve your own development issues.

    • Additional resources

    Table of contents

    Here are some of the latest popular questions that the Docusign developers community asked on Stack Overflow in the month of December 2023. You too can ask questions by using the tag docusignapi in Stack Overflow.

    Thread: Docusign - EnvelopeViews : createCorrect param 'advcorrect' does not work

    https://stackoverflow.com/questions/77622239/

    Summary: The developer is attempting to use the EnvelopeViews: createCorrect endpoint of the Docusign eSignature REST API, which enables a developer to embed the envelope correction view in their application. This developer would like to change where in the correction view the user starts. They want the user to start on the tagger screen, where you just manage the tabs for your envelope, instead of the “prepare” screen, where you manage documents and recipients. 

    Answer: There are two ways to control where the user lands when they select the URL created by this endpoint. The first way is in the REST API itself. There’s a parameter called beginOnTagger which if set to “true” changes the behavior of the URL to skip the prepare screen and go to the tagger directly. The second way involves changing the URL that the API returns from this endpoint by adding a query parameter simply called “a”. You can set a=correct or a=tagger to choose which of the two screens will show for the user. 

    Common API Tasks🐈: Correct an envelope from your app includes additional information about correcting envelopes using the eSignature SDKs.

    Thread: How to send data through api to elastic template? ie how to alter/change this envelope that I have for a regular template that works?

    https://stackoverflow.com/questions/77586663/

    Summary: The developer is trying to use Elastic signing and the Click API using the Python Click SDK. They want to be able to dynamically pass data to the template and were not able to do so.

    Answer:  The Dev Center How to embed an elastic signing agreement article details how to do this. Note that the developer did not include the dynamic data inside a document_data object, as is needed. 

    The Python code for doing this should look like so:

    user_agreement_request = UserAgreementRequest(
      client_user_id=args["email"],
      document_data={
        "fullName": args["fullName"], 
        "email": args["email"], 
        "company": args["company"], 
        "title": args["title"], 
        "date": args["date"]
      },
    )
    

    Thread: Failed to fetch Clickwrap details. Status code: 401 and error 500 "an error has occurred"

    https://stackoverflow.com/questions/77608385/

    Summary: The same developer from the previous question is now having an issue getting an access token to be used for their Click API integration. 

    Answer: The developer’s specific problem was that they were using the wrong base URL to obtain an access token. This URL is the same for all APIs, and in the developer environment it is https://account-d.docusign.com/oauth/auth, where you make the Authorization Code Grant API call to obtain an access token. It’s also important to note that the Click API uses its own scopes, so when requesting access tokens, you should ask for click.manage and click.send scopes.

    Additional resources

    Inbar Gazit
    Inbar GazitSr. Manager, Developer Content

    Inbar Gazit has been with Docusign since 2013 in various engineering roles. Since 2019 he has focused on developer content. Inbar works on code examples including the launchers, available on GitHub in eight languages, and helps build sample apps showcasing the various Docusign APIs. He is also active on StackOverflow, answering your questions. Inbar can be reached at inbar.gazit@docusign.com.

    More posts from this author

    Related posts

    • Developer Spotlight

      Developer Spotlight is Coming to Docusign Community!

      Matthew Lusher
      Matthew Lusher
    • Breaking the Language Barrier: Why Large Language Models Need Open Text Formats

      Dan Selman
      Dan Selman
    • Understanding Levenshtein Distance: Applications to AI-Generated Text

      Vincent Pan
      Vincent Pan

    Developer Spotlight is Coming to Docusign Community!

    Matthew Lusher
    Matthew Lusher

    Understanding Levenshtein Distance: Applications to AI-Generated Text

    Vincent Pan
    Vincent Pan

    Discover what's new with Docusign IAM or start with eSignature for free

    Explore Docusign IAMTry eSignature for Free
    Person smiling while presenting