Skip to main content
Returns a list of all campaigns belonging to the authenticated user.

Endpoint

GET /user/campaigns

Response

campaigns
array
Array of campaign objects.

Example

curl -X GET "https://portal.intellixent.ai/api/user/campaigns" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Response
[
  {
    "id": 1,
    "name": "Product Demo Campaign",
    "status": "draft",
    "max_calls_in_parallel": 3,
    "mark_complete_when_no_leads": true,
    "allowed_hours_start_time": "09:00:00",
    "allowed_hours_end_time": "17:00:00",
    "allowed_days": [
      "monday",
      "tuesday",
      "wednesday",
      "thursday",
      "friday"
    ],
    "max_retries": 3,
    "retry_interval": 60,
    "created_at": "2025-05-29T07:18:34.000000Z",
    "updated_at": "2025-05-29T07:18:34.000000Z"
  }
]