Send Reminder

Remind a signer about signing a document

Overview

Reminds a single signer - can also be used to get the email to top of the inbox

End Point
https://goodsign.io/api/document/:uuid/remind
Method
POST
Authentication
Bearer your_api_token
Parameters
  • signer_email string (email format)
    john@example.com
Response
  {
    "success": true,
    "msg": "Reminder Sent",
    "status": "sent",
    "master_doc": {*Master Document Data*}
  }
Working Curl Request
Remove the (opt) from a parameter to use it
curl --url https://goodsign.io/api/document//remind \
--header 'authorization: Bearer YOUR_API_TOKEN' \
-F 'signer_email=EMAIL_ADDRESS_HERE'