Documentation Index
Fetch the complete documentation index at: https://docs.intellixent.ai/llms.txt
Use this file to discover all available pages before exploring further.
Returns a list of all campaigns belonging to the authenticated user.
Endpoint
GET /user/campaigns
Response
Array of campaign objects.
Unique identifier of the campaign.
Current status of the campaign (e.g., draft, in-progress, stopped, completed).
Maximum number of simultaneous calls.
mark_complete_when_no_leads
Whether the campaign is automatically marked complete when no leads remain.
Start time of the allowed calling window.
End time of the allowed calling window.
Days of the week when calls are allowed.
Maximum retry attempts for failed calls.
Interval in minutes between retry attempts.
ISO 8601 timestamp when the campaign was created.
ISO 8601 timestamp when the campaign was last updated.
Example
curl -X GET "https://portal.intellixent.ai/api/user/campaigns" \
-H "Authorization: Bearer YOUR_API_KEY"
[
{
"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"
}
]