Category / Section
How to send reminders for waiting or in-progress documents using API?
Published:
1 min read
If you’ve sent a document to a signer and they haven’t completed the signing process yet, but you need to send them a reminder, BoldSign offers API support for sending reminders. This will trigger a reminder email to be sent to the signer, alerting them to complete the signing.
Here are example codes that you can use for sending reminders to sign a document:
Code snippet
curl -X 'POST' \ 'https://api.boldsign.com/v1/document/remind?documentId={documentId}' \
-H 'accept: */*' \
-H 'X-API-KEY: {your-api-key}'\
-H 'Content-Type: application/json;odata.metadata=minimal;odata.streaming=true' \
-d '{
"message": "string"
}'
In the above examples, replace documentId
with the ID of the document for which you want to send a reminder. Customize the message
to tailor the reminder message you want to convey to the signer. Executing the provided commands will send a reminder email to the signer, containing the signing link. The signer can then click the link to complete the signing process.