Get Scheduled Message

Retrieve the details of a specific scheduled message using its schedule ID.

GET/v2.0/scheduled-messages/:scheduleId

Path Parameters

Path Parameters

ParameterTypeDescription
scheduleIdstringThe ID of the scheduled message

Code Examples

curl https://api.sendiee.com/v2.0/scheduled-messages/664abc... \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "success": true,
  "data": {
    "scheduleId": "664abc...",
    "recipient": "919876543210",
    "scheduledAt": "2025-12-01T10:00:00.000Z",
    "timezone": "Asia/Kolkata",
    "status": "scheduled",
    "template": {
      "name": "order_confirmation",
      "id": "1234567890",
      "language": "en"
    },
    "bodyParameters": [
      "John",
      "ORD-1234"
    ],
    "createdAt": "2025-11-30T08:00:00.000Z"
  }
}

Try It

Try it — API Playground

Appended to the endpoint path