v1
latestOpenAPI 3.0.02026-08-067074272.5 KBScheduled Messages
Retrieves a scheduled 1:1 message.
Returns details for a single scheduled 1:1 message, including dashboard from number and recipient_name. Group scheduled messages are not returned by this endpoint.
get/dashboards/{dashboard_id}/scheduledmessages/{message_id}
Path parameters
dashboard_idinteger required
Example:121
Id of dashboard
message_idstring uuid required
Example:eb2a0cc2-5b88-468b-b3f4-926b07bcb275
The scheduled message's unique identifier (message_id returned when the message was scheduled).
Response
The scheduled message details.
Example response
{
"message_id": "eb2a0cc2-5b88-468b-b3f4-926b07bcb275",
"status": "scheduled",
"body": "Reminder: your appointment is tomorrow.",
"to": "14239309346",
"date_created": "2026-08-01T12:00:00Z",
"schedule_date_utc": "2026-08-15T14:00:00Z",
"occurrence_number": 1,
"repeat_settings": {
"repeat_by": "week",
"step": 1,
"times": 5,
"end_date": "2026-12-31T23:59:59Z",
"days": [
"Monday",
"Wednesday"
]
},
"from": "14232180111",
"recipient_name": "Bruce Wayne"
}