docusign-esign-ruby-client
docusign-esign-ruby-client copied to clipboard
The Official DocuSign Ruby Library used to interact with the eSign REST API. Send, sign, and approve documents using this client.
Hi there, I'm trying to add a new document to my envelope using update_document, however I'm unsure of what to pass in for the document_file_bytes. The documentation is quite vague....
Hello there! I was working on boot time improvements in our application and I noticed that loading the DocuSign gem is taking a significant amount of time there (~300ms, when...
I am currently investigating memory usage on my rails app. I ran a check (`bundle exec derailed bundle:mem`) to see memory at load time, and discovered that docusign was 46Mb...
We have 'archive' method to download all documents from an envelope at once , but I'm having hard time to get document info like document ID or some manifest data...
According to the [API documentation](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopedocuments/update/) we need to pass the document in the body of the request. However, [the method](https://docusign.github.io/docusign-esign-ruby-client/DocuSign_eSign/EnvelopesApi.html#method-i-update_document) does not allow us to provide the document definition. On...
In Bash and Js code, setting the clientUserId prevents an email going out to the signers. When using this ruby gem however, the clientUserId property doesn't have that intended effect.
I'm trying to emulate some js code written by a previous dev. ``` // js code let viewRequest = new docusign.RecipientViewRequest(); viewRequest.returnUrl = "https://acme.org/admin"; viewRequest.authenticationMethod = "none"; viewRequest.email = "[email protected]";...
The documentation comments in the code are in the markdown format but are generated on a single line, which makes it unreadable and unparsable using markdown or rubydoc.info. One example...
An annoying warning is raised by [`URI.encode`](https://ruby-doc.org/stdlib-2.7.1/libdoc/uri/rdoc/URI/Escape.html#method-i-encode) (which is an alias of `URI.escape`) on Ruby 2.7+ ``` docusign_esign-3.0.0/lib/docusign_esign/client/api_client.rb:262: warning: URI.escape is obsolete ``` Here is an [article explaining why](url). TL;DR...