Send reminders
post/v1/document/remindA reminder is helpful when you need to remind your signers to sign the document. A reminder email will be sent to the signer. You can send reminders to multiple signers together if more than one signer is needed to sign the same 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", "onBehalfOf": "string" }'
var apiClient = new ApiClient("https://api.boldsign.com", "{your API key}"); var documentClient = new DocumentClient(apiClient); documentClient.RemindDocument( documentId: "8f59295d-xxxx-xxxx-xxxx-e7dc88cfff2c", reminderMessage: new ReminderMessage(message: "Please sign this soon"));
import boldsign configuration = boldsign.Configuration( api_key = "YOUR_API_KEY" ) with boldsign.ApiClient(configuration) as api_client: document_api = boldsign.DocumentApi(api_client) reminder_message = boldsign.ReminderMessage( message="Please sign this soon" ) remind_document_response = document_api.remind_document( document_id="YOUR_DOCUMENT_ID", reminder_message=reminder_message )
const axios = require('axios'); const response = await axios.post( ' https://api.boldsign.com/v1/document/remind', { 'message': 'string', 'onBehalfOf': 'string' }, { params: { 'documentId': '{documentId}' }, headers: { 'accept': '*/*', 'X-API-KEY': '{your-api-key}', 'Content-Type': 'application/json;odata.metadata=minimal;odata.streaming=true' } } );
Query parameters
documentIdstringRequired | The ID of the document to which the reminder has to be sent. |
receiverEmailsarray | Mail ID of the signer. Multiple signer IDs can be specified if the signature is requested from multiple signers for the same document. |
Request body
messagearray | Message to be sent to the signer to remind them. |
onBehalfOfarray | Mail ID of the sender if you are sending reminders to the on behalf of documents. |
Example response
204 No Content