Questions tagged [hellosign-api]

47 questions
3
votes
1 answer

HelloSign Templates - Not showing Me (when sending)

My app is being set up to use HelloSign through it's API. I'm trying to create a Template using a PDF I have. My goal is to have fields in the PDF that I can pre-fill in before sending it to the customer to their signature. I'm going to pre-fill…
bluedevil2k
  • 9,366
  • 8
  • 43
  • 57
2
votes
2 answers

Add Image to Document/Template stored on HelloSign using JAVA

USECASE: I have a document stored on HELLOSIGN which is supposed to be sent to a signer after prepopulating it with some data. Additionally, I have a field in the document where in I should be able to upload the signer image from my DB. What I…
FAIZAN
  • 271
  • 1
  • 6
  • 16
2
votes
2 answers

Connecting a Hello sign API to apps script project

I want to Create a new API app usin Google Apps script and Hello sign API I have specified the redirect URL as https://script.google.com/macros/s/AKfycbyKw3oLmpqINGsDml281iUbxBboKn950dqVFXNibMfLurxYcRPf/exec and the screenshot is shown below Also,…
2
votes
1 answer

DocuSign rasterization of PDF files of poor quality?

The text on the left is from the originating PDF file, the text on the right is overlayed dynamic data passed into the tab. The original PDF looks rasterized (likely) is there a way to optimize rasterization to avoid this? I don't see any…
tgk
  • 3,857
  • 2
  • 27
  • 42
1
vote
0 answers

Firebase hosting getting iframe related error when using hellosign

We are getting a frame-ancestors related iframe error when attempting to use the hellosign-embedded library from our application, the application is hosted in Firebase example of error message: Refused to frame 'https://app.hellosign.com/' because…
Jeff Voss
  • 3,637
  • 8
  • 46
  • 71
1
vote
1 answer

Can't make `hellosign-embedded` work with `next/dynamic` in TS project

as the title says I can't make hellosign-embedded work with next My app will be served though a CDN, so I don't cake if it won't work with SSR const HelloSign: any = dynamic( (): any => { return import("hellosign-embedded") }, { ssr: false…
LuisEnMarroquin
  • 1,609
  • 1
  • 14
  • 26
1
vote
1 answer

AddCustomField is not working in HelloSignAPI

The value is not filled in textboxes.. Textbox name is assigned like FullName and Company in Hellosign Templates. Then add code like below, Even the value is not filled in textboxes.. Please help this issue.. Thanks for in advance.. var request =…
Krishna
  • 33
  • 3
1
vote
1 answer

HelloSign: how to duplicate a template though API?

The following screenshot is the manual approach to duplicate a template. Is there an API to do it? # API like this HelloSignClient.duplicate_template(template_id)
Ryan Lyu
  • 4,180
  • 5
  • 35
  • 51
1
vote
1 answer

HelloSign: what do role Me and Me(when sending) mean in a template?

In the documentation of HelloSign, The following two roles of template are confusing. Me Me(when sending) My questions are: Are they roles by default? What's Me role used for? Could you please provide a usage example?
Ryan Lyu
  • 4,180
  • 5
  • 35
  • 51
1
vote
1 answer

HelloSign: How to Solve SameOrigin Error?

I’m seeking to get a HelloSign embedded template working in my web app. I have a created a HelloSign app using the domain name “my_domain_name.app”. I have tried to access that app by running the following code on the…
VikR
  • 4,818
  • 8
  • 51
  • 96
1
vote
1 answer

Could not load type 'HelloSign.Client' from assembly 'HelloSign, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'

I am working with hello sign. could you please figure out where the problem is. I have searched a lot but didn't find same. [HttpPost] public ActionResult SendDocument(SendDocumentForm Form) { if (!ModelState.IsValid) { …
rykamol
  • 1,097
  • 1
  • 10
  • 19
1
vote
1 answer

How to append custom form data to HelloSign Api template?

I need to append the custom form data to HelloSign api template. The form filled php form before the HelloSign page. I need to fetch all the details of the form data to display in the HelloSign template.
1
vote
1 answer

Not able to pre populate the custom field using c# code in HelloSign

I was trying to pre-populate the custom field value from C# code but I was not able to. I have used following snippet of code to do so var client = new Client("MY API KEY"); var request = new TemplateSignatureRequest(); …
LilRazi
  • 690
  • 12
  • 33
1
vote
1 answer

Undefined partial route (not params) using Express, React-native and HelloSign API

I am using the HelloSign API to generate a webview for contract signing within React Native. The endpoint is as follows. app.get('/api/contract/signcontract', Contract.viewAndSignContract); this endpoint is hit after generating the embedlink…
1
vote
1 answer

How to append owner's sign in the template using Hellosign API?

This questions is regarding Hellosign API. I am creating a template where i want to owner's sign(Suppose, I am owner then my sign will append there automatically). I create it using Hellosign website but now i want to create it using hellosign API.…
1
2 3 4