Skip to main content
PATCH
/
templates
/
{template_id}
/
reminders
/
{reminder_id}
Update Template Reminder
curl --request PATCH \
  --url https://ielmshcswdhuacyjlpiy.supabase.co/functions/v1/signing-request-api/templates/{template_id}/reminders/{reminder_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "hours": 96,
  "subject": "Updated Reminder: {{template_name}}"
}'
{
  "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

template_id
string<uuid>
required
reminder_id
string<uuid>
required

Body

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

Response

Reminder updated 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>