Skip to main content
GET
/
templates
/
{id}
/
reminders
Get template reminders
curl --request GET \
  --url https://api.firma.dev/functions/v1/signing-request-api/templates/{id}/reminders \
  --header 'Authorization: <api-key>'
[
  {
    "id": "remind123-e89b-12d3-a456-426614174000",
    "hours": 24,
    "subject": "Reminder: Please sign the document",
    "message": "This is a friendly reminder to complete your signature.",
    "all_users": true,
    "template_user_id": null,
    "date_created": "2024-01-15T10:30:00Z",
    "date_changed": "2024-01-15T10:30:00Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.firma.dev/llms.txt

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

Authorizations

Authorization
string
header
required

API key for authentication. Use your API key directly without any prefix (e.g., 'your-api-key'). Bearer prefix is optional but not required.

Path Parameters

id
string<uuid>
required

Template ID

Response

Template reminders retrieved successfully

id
string<uuid>

Unique identifier for the reminder

hours
integer

Hours after sending before reminder is sent

Required range: x >= 1
subject
string

Email subject for the reminder

Maximum string length: 255
message
string

Email message body for the reminder

Maximum string length: 5000
all_users
boolean

Whether reminder applies to all users

template_user_id
string<uuid> | null

Specific user to send reminder to, if not all users

date_created
string<date-time>

Reminder creation timestamp

date_changed
string<date-time>

Reminder last update timestamp