Skip to main content
GET
/
api
/
messaging
/
campaigns
/
{campaign_id}
Get Campaign Detail
curl --request GET \
  --url https://api.example.com/api/messaging/campaigns/{campaign_id}/
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Holiday Promotion",
  "message": "Special holiday offer! Get 20% off",
  "status": "running",
  "scheduled_at": "2025-12-01T10:00:00Z",
  "started_at": "2025-12-01T10:00:00Z",
  "total_recipients": 1000,
  "sent": 850,
  "delivered": 800,
  "failed": 50,
  "delivery_rate": 94.12,
  "cost": 50.00,
  "currency": "USD",
  "created_at": "2025-11-27T10:30:00Z",
  "updated_at": "2025-12-01T10:15:00Z"
}
Get detailed information about a specific campaign.
campaign_id
string
required
Campaign ID

Success Response (200)

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Holiday Promotion",
  "message": "Special holiday offer! Get 20% off",
  "status": "running",
  "scheduled_at": "2025-12-01T10:00:00Z",
  "started_at": "2025-12-01T10:00:00Z",
  "total_recipients": 1000,
  "sent": 850,
  "delivered": 800,
  "failed": 50,
  "delivery_rate": 94.12,
  "cost": 50.00,
  "currency": "USD",
  "created_at": "2025-11-27T10:30:00Z",
  "updated_at": "2025-12-01T10:15:00Z"
}