List Campaigns
curl --request GET \
--url https://app.famulor.de/api/user/campaigns \
--header 'Authorization: Bearer <token>'[
{
"id": 1,
"name": "New Customer Acquisition Q1 2024",
"status": "active",
"max_calls_in_parallel": 5,
"mark_complete_when_no_leads": true,
"allowed_hours_start_time": "09:00",
"allowed_hours_end_time": "18:00",
"allowed_days": ["monday", "tuesday", "wednesday", "thursday", "friday"],
"max_retries": 3,
"retry_interval": 300,
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-15T14:30:00Z"
}
]
List Campaigns
List all outbound calling campaigns in your Famulor account via API. View status, lead counts, assigned AI voice agents and progress metrics.
GET
/
api
/
user
/
campaigns
List Campaigns
curl --request GET \
--url https://app.famulor.de/api/user/campaigns \
--header 'Authorization: Bearer <token>'[
{
"id": 1,
"name": "New Customer Acquisition Q1 2024",
"status": "active",
"max_calls_in_parallel": 5,
"mark_complete_when_no_leads": true,
"allowed_hours_start_time": "09:00",
"allowed_hours_end_time": "18:00",
"allowed_days": ["monday", "tuesday", "wednesday", "thursday", "friday"],
"max_retries": 3,
"retry_interval": 300,
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-15T14:30:00Z"
}
]
This endpoint allows you to list all campaigns.
Response Fields
The API returns a direct array of campaigns:Array of all campaigns
Show Campaign Properties
Show Campaign Properties
The ID of the campaign
The name of the campaign
The status of the campaign
Maximum number of calls that can be made in parallel
Whether the campaign should be marked as complete when no leads are available
The start time for allowed calling hours
The end time for allowed calling hours
The weekdays on which calls are allowed
Maximum number of retry attempts for failed calls
Interval in seconds between retry attempts
Timestamp when the campaign was created
Timestamp when the campaign was last updated
[
{
"id": 1,
"name": "New Customer Acquisition Q1 2024",
"status": "active",
"max_calls_in_parallel": 5,
"mark_complete_when_no_leads": true,
"allowed_hours_start_time": "09:00",
"allowed_hours_end_time": "18:00",
"allowed_days": ["monday", "tuesday", "wednesday", "thursday", "friday"],
"max_retries": 3,
"retry_interval": 300,
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-15T14:30:00Z"
}
]
Related pages: Introduction and Authentication Guide, and API Integration Examples.
Was this page helpful?
⌘I

