v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
Document Reminders

Send Manual Reminder

Sends manual reminders to one or more recipients of a specified document.

post/public/v1/documents/{document_id}/send-reminder

Path parameters

document_idstring required

The UUID of the document.

Request body

Example request

{
  "reminders": [
    {
      "recipient_id": "2eWSKSvVqmuVCnuUK3iWwD",
      "email_customization": {
        "subject": "Reminder: Please sign the document \"Service Agreement\"",
        "message": "This is a friendly reminder to review and sign the document \"Service Agreement\".\nPlease click the link below to access the document.\nThank you,\nThe Tech Solutions Team\n"
      }
    }
  ]
}

Response

Successfully processed reminder requests. Returns an array of objects, where each object details the outcome of the reminder delivery attempt for a specific recipient.

Example response

{
  "result": [
    {
      "email_customization": {
        "subject": "Reminder: Please sign the document \"Service Agreement\"",
        "message": "This is a friendly reminder to review and sign the document \"Service Agreement\".\nPlease click the link below to access the document.\nThank you,\nThe Tech Solutions Team\n"
      }
    }
  ]
}