Create a chat reminder
POST/v1/chats/{chatID}/reminders
Set a reminder for a chat at a specific time.
Create a chat reminder
curl http://localhost:23373/v1/chats/$CHAT_ID/reminders \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $BEEPER_ACCESS_TOKEN" \
-d '{
"reminder": {
"remindAt": "2025-08-31T23:30:12.520Z"
}
}'