Skip to main content
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
array
Array of all campaigns
[
  {
    "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"
  }
]