echosign

Adobe sign API - create a widget with pre-filling details

百般思念 提交于 2020-07-09 08:19:33
问题 I'm trying to implement the functionality, where users need to sign documents within the application process instead of sending a document to user for eSignature. I used Adobe Sign API(using trail account) to achieve this and was able to create a widget and get the embedded code to display the document in the HTML page successfully. But, while creating the widget I wanted to prefill the form fields and set field as read-only(first_name, address etc) in the document. I'm not able to access

echosign combinedDocument api

徘徊边缘 提交于 2019-12-11 23:37:04
问题 https://api.na1.echosign.com/api/rest/v5/agreements/{agreementId}/combinedDocument I am trying to create a file from the body of the response, but it is creating a file that I can't open. It requires a password even though there isn't one on the file. I think this must have something to do with the encoding / decoding. I am using a node express server. Here are the few lines of code I am using: var request = require('request'); request({ baseUrl: 'https://api.na1.echosign.com/api/rest/v5',

Adobe Sign (echo sign) API sending document using C#

谁都会走 提交于 2019-12-06 11:29:14
问题 Okay I have limited understanding of working with API's Im trying to get to grips with Adobe Sign API and hit a dead end, on there test page i have enterd this and it works But i have no idea on how then do that in C# I have tried the following, but know its missing the OAuth stuff and I'm just not sure what to try next. by the way foo.GetAgreementCreationInfo() just gets the string that is in the screen shot, I just moved it out cus it was big and ugly var foo = new Models(); var client =

Adobe Sign (echo sign) API sending document using C#

北城余情 提交于 2019-12-04 17:09:21
Okay I have limited understanding of working with API's Im trying to get to grips with Adobe Sign API and hit a dead end, on there test page i have enterd this and it works But i have no idea on how then do that in C# I have tried the following, but know its missing the OAuth stuff and I'm just not sure what to try next. by the way foo.GetAgreementCreationInfo() just gets the string that is in the screen shot, I just moved it out cus it was big and ugly var foo = new Models(); var client = new RestClient("https://api.na1.echosign.com/api/rest/v5"); // client.Authenticator = new

Using EchoSign API in VB.net

瘦欲@ 提交于 2019-12-02 07:09:22
问题 I'm trying to convert the sample C# code provided my echosign in VB.net for use within our applications. Specifically the SendDocument method. Has anyone out there done this already? The API is throwing back an error message "Fault: java.lang.NullPointerException" when ever i call it. Here is the converted function: Public Shared Function SendDocument(ByVal apiKey As String, ByVal file As Byte(), ByVal recipientEmailAddress As String, ByVal fileName As String, ByVal message As String, ByVal

Using EchoSign API in VB.net

烈酒焚心 提交于 2019-12-02 01:00:41
I'm trying to convert the sample C# code provided my echosign in VB.net for use within our applications. Specifically the SendDocument method. Has anyone out there done this already? The API is throwing back an error message "Fault: java.lang.NullPointerException" when ever i call it. Here is the converted function: Public Shared Function SendDocument(ByVal apiKey As String, ByVal file As Byte(), ByVal recipientEmailAddress As String, ByVal fileName As String, ByVal message As String, ByVal expireDays As Int32) As String Try Dim ES As EchoSignDocumentService13 = New EchoSignDocumentService13()