Create
Create a chat reminder
/v1/chats/{chatID}/reminders
Set a reminder for a chat at a specific time
Path Parameters
chatID: string
Unique identifier of the chat.
Body Parameters
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": {
"remindAtMs": 0
}
}'