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.