Skip to main content
POST
/
signature_request
/
remind
/
{signature_request_id}
Send Reminder Emails
curl --request POST \
  --url https://api.luminpdf.com/v1/signature_request/remind/{signature_request_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "emails": [
    "[email protected]",
    "[email protected]"
  ]
}
'
{
  "signature_request": {
    "signature_request_id": "696d007913f3b8...",
    "title": "Signature request",
    "created_at": 1768751225657,
    "expires_at": 1927510980694,
    "status": "WAITING_FOR_OTHERS",
    "signers": [
      {
        "name": "John Doe",
        "email_address": "[email protected]",
        "status": "WAITING_FOR_OTHERS",
        "is_approved": true,
        "group": 1
      },
      {
        "name": "Jane Doe",
        "email_address": "[email protected]",
        "status": "NEED_TO_SIGN",
        "is_approved": false,
        "group": 2
      }
    ],
    "updated_at": 1768751357064,
    "details_url": "https://sign.luminpdf.com/auth?mode=view-contract&token=8647b08b...",
    "signing_type": "ORDER"
  },
  "reminders": [
    {
      "email": "[email protected]",
      "signer_status": "WAITING_FOR_OTHERS",
      "email_status": "BOUNCE"
    },
    {
      "email": "[email protected]",
      "signer_status": "NEED_TO_SIGN",
      "email_status": "SENT"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.luminpdf.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Provide your API key in the X-API-Key header, e.g., X-API-Key: YOUR_API_KEY.

Path Parameters

signature_request_id
string
required

ID of the signature request

Body

application/json
emails
string<email>[]
required

List of emails to send reminder.

Response

Returns signature request details and per-email reminder results.

signature_request
object
required

Contains information about a signature request.

reminders
object[]
required

List of reminder email results for requested signer emails.