Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to post to the helloSign API to send a signature request ( http://www.hellosign.com/api/gettingStarted ). Using https://github.com/agentile/HelloSign-PHP , I have been successful performing a basic GET request. However I am getting errors Sending a Signature Request with a Template http://www.hellosign.com/api/signature_request/send_with_reusable_form .

The example in the manual looks like:

curl -u '[email protected]:password' 'https://api.hellosign.com/v3/signature_request/send_with_reusable_form' \
-F 'title=NDA with Acme Co.' \
-F 'subject=The NDA we talked about' \
-F 'message=Please sign this NDA and then we can discuss more. Let me know if you have any questions.' \
-F 'signers[Me][email_address][email protected]' \
-F 'signers[Me][name]=Jack' \
-F 'signers[Client][email_address][email protected]' \
-F 'signers[Client][name]=Jill' \
-F 'custom_fields[contract number]=DD21' \
-F 'reusable_form_id=5eb54aaaa71ce8dcaec5d06e93a2754af1712606'

What would the POST request produced by the CURL commands above look like . If I can see what it looks like, I can reverse engineer it.

share
why don't you point that request to a server/script you control? You can easily capture the request then. – Marc B 18 secs ago
add comment (requires an account with 50 reputation)

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.