Questions tagged [hellosign-api]
47 questions
1
vote
1 answer
Radio buttons with HelloSign API
I'm trying to add a radio button to a template that I am sending through HelloSign's API to be eSigned. I can't for the life of me figure out how to do it. There documentation mentions checkboxes but not radio buttons. Is there a POST parameter I…

whereisnow
- 11
- 3
0
votes
1 answer
HelloSign python SDK generated with OPS is different from the SDK project provided in github
I am trying to generate the python SDK of the hellosign from the opensource repo with this yaml https://github.com/hellosign/hellosign-openapi/blob/main/openapi-sdk.yaml
The below is the command I am using to generate the SDK
java -jar…

IMK
- 654
- 9
- 15
0
votes
0 answers
HelloSign PHP SDK - Class "HelloSignSDK\Configuration" not found
I tried with the below code to get the Account details, it's working fine.
require_once __DIR__ . "/vendor/autoload.php";
$apikey = "";
$client = new HelloSign\Client($apikey);
$account = $client->getAccount();
But when I…

Ejilarasan J
- 310
- 1
- 3
- 11
0
votes
1 answer
Opening an embedded HelloSign Signature in custom iframe
I've built out a system where my users can sign HelloSign signatures created with embedded signature request on the backend.
In the frontend, I'm using the hellosign-embedded library and using it like this to open the included iframe:
const…

nyphur
- 2,404
- 2
- 24
- 48
0
votes
0 answers
should webhooks deployed on heroku work the same?
@app.route('/hswebhook', methods=['POST'])
def webhook():
if request.method == 'POST':
test = request.json
print(test)
return 'success'
Using postman, and testing this locally this works as expected. However when I…

yee yee
- 1
- 2
0
votes
1 answer
Use HelloSign for e-signature in Angular project and how?
I am starting new project with Angular and node.js API. It has one functionality of document signing with e-signature.
I am not sure if I can use HelloSign with angular or not. And How?

Rutvi Trivedi
- 93
- 7
0
votes
1 answer
I am getting domain mismatch error in hello-sign
I am using approved client id with test_mode:false, in api, an opening the template in mobile app. the domain registered in client id is same from which i am sending the template .
Error-->
Domain mismatch for client ---. This page can only be…
0
votes
1 answer
Hellosign conversion old system cordinates
I'm wanting to take advantage of the fields created by Hellosign that can be downloaded by the get / template /:id api, to assemble a pdf here with the document, but I saw that in the return from the API they use an old 80 DPI system where I only…

Diego Pita Silva
- 1
- 1
0
votes
1 answer
SignatureDoesNotMatch on GET request to pre-signed URL (hellosign)
i am attempting to grab a pdf file for e-signature using pre-signed URLs. i use Amplify Storage to generate the URL. then i provide the URL to the HelloSign function to bring the file into the embedding window. i am able to open the document using…

ChumiestBucket
- 868
- 4
- 22
- 51
0
votes
1 answer
HelloSign API - How to create dynamic document without inbuilt template
I want to Create embedded Hello Sign signature document with Custom fields, but without using a Template. Is there any way to do it?
The case is, I have to get the signature on one dynamic system generated document. So can't use existing default…

rj angle
- 1
- 2
0
votes
1 answer
Unable to pre-fill template with createEmbeddedWithTemplate & getSignUrl
Nodejs Code to generate HelloSign template & sign url:
const opts = {
clientId,
test_mode: 1,
template_id: 'template_id',
/* title: 'embedded draft Title',
subject: 'embedded draft sub',
…

Khalil Choudhry
- 17
- 5
0
votes
1 answer
How to decline a request in Hellosign eSignature API using node endpoint?
Is there any way to decline Hellosign's embedded signature request using the node.js endpoint?

Afaq Ahmed
- 1
- 2
0
votes
1 answer
Embedded Signing UI
I am using the embedded UI for template and document creation. I want to know the data which are being filled in the UI and also have to store them in my DB and then hit to 3rd party tools for signing. Is this flow possible to store the data in my…

Master Developer
- 97
- 11
0
votes
2 answers
Review the document
I want to build a system where a document is to be signed/reviewed by the user. It may be the case that user takes 10 days to sign/review the document or even in minutes things are done.
By review : user shall review the document, but no need to…

Master Developer
- 97
- 11
0
votes
2 answers
Remote + Embedded Signature
I want to build a system where a document is to be signed by the user. It may be the case that user takes 10 days to sign the document or even in minutes things are done.
Using Remote signing : User will receive the mail from third party app, and…

Master Developer
- 97
- 11