Skip to main content
POST
/
signing-requests
/
{signing_request_id}
/
reminders
Create Signing Request Reminder
curl --request POST \
  --url https://ielmshcswdhuacyjlpiy.supabase.co/functions/v1/signing-request-api/signing-requests/{signing_request_id}/reminders \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "hours": 72,
  "all_users": true,
  "subject": "Urgent: {{signing_request_name}} expires in {{expiration_date}}",
  "message": "Please complete your signature before expiration."
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "hours": 2,
  "all_users": true,
  "recipient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "subject": "<string>",
  "message": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key for authentication. Format: 'Bearer your-api-key'

Path Parameters

signing_request_id
string<uuid>
required

Body

application/json
hours
integer
required
Required range: x >= 1
subject
string
required
Maximum length: 255
message
string
required
all_users
boolean
default:false
recipient_id
string<uuid>

Required if all_users=false

Response

Reminder created successfully

id
string<uuid>
hours
integer

Hours after sending/last reminder to send this reminder

Required range: x >= 1
all_users
boolean

If true, sends to all recipients; if false, sends to specific recipient_id

recipient_id
string<uuid> | null

Specific recipient to remind (null if all_users=true)

subject
string

Email subject line. Supports variables: {{signer_name}}, {{template_name}}, {{signing_request_name}}, {{team_name}}, {{expiration_date}}

Maximum length: 255
message
string

Email body content. Supports same variables as subject.

created_at
string<date-time>
updated_at
string<date-time>