Trial Ending Reminder
Schedule a webhook when a trial starts, then send a reminder before conversion day.
- Event
- trial.ends_soon
- Delay
- 7 days before trial end
curl https://webhookscheduler.com/api/v1/schedule \
-H "Authorization: Bearer wh_live_xxxxx" \
-H "Content-Type: application/json" \
-d '{
"url": "https://api.example.com/webhooks/trial.ends_soon",
"runAt": "2026-05-15T09:00:00.000Z",
"body": {
"event": "trial.ends_soon",
"delay": "7 days before trial end",
"customerId": "cus_123"
},
"idempotencyKey": "trial.ends_soon-cus_123-2026-05-15"
}'
