Skip to main content
GET
/
api
/
v1
/
campaigns
/
{campaign_id}
/
config
Get Campaigns Config
curl --request GET \
  --url https://api.kollie.ai/api/v1/campaigns/{campaign_id}/config \
  --header 'X-API-Key: <api-key>'
{
  "message": "Data got correctly",
  "meta": {},
  "data": "<unknown>"
}
Retrieves the configuration settings for a specific campaign.

Path Parameters

campaign_id
string
required
The unique identifier of the campaign

Response

message
string
A message indicating the result of the operation
meta
object
Additional metadata about the response
data
object
The campaign configuration object containing:
  • call_on_weekend: boolean - Whether to make calls on weekends
  • queue_again: boolean - Whether to queue calls again
  • call_back_attempts: integer - Number of callback attempts
  • campaign_id: string - The ID of the campaign
  • id: string - The ID of the config
  • created_at: string - Timestamp of when the config was created

Authorizations

X-API-Key
string
header
required

Path Parameters

campaign_id
string<uuid>
required

Response

Successful Response

message
string | null
default:Data got correctly
meta
Meta · object
data
unknown