Campaigns
List Campaigns
Calls
Vector Stores
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Inbound Numbers
Outbound Numbers
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
Campaigns
List Campaigns
Retrieve all campaigns and high level numerical metrics associated with each.
GET
/
v1
/
campaigns
curl --request GET \
--url https://app.luly.ai/api/v1/campaigns \
--header 'authorization: <authorization>'
{
"status": "success",
"campaigns": [
{
"campaign_id": "01e4b3ce-e216-aaaa-bbbb-9ac5ac3b87d0",
"campaign_name": "Example_2307_02",
"count": 1082,
"human_ended": 636,
"assistant_ended": 264,
"human_answered": 422,
"voicemail_answered": 396,
"unknown_answered": 258,
"transferred_count": 5
},
//... Additional campaign objects
]
}
Headers
Your API key for authentication.
Response
An array of campaign data objects.
{
"status": "success",
"campaigns": [
{
"campaign_id": "01e4b3ce-e216-aaaa-bbbb-9ac5ac3b87d0",
"campaign_name": "Example_2307_02",
"count": 1082,
"human_ended": 636,
"assistant_ended": 264,
"human_answered": 422,
"voicemail_answered": 396,
"unknown_answered": 258,
"transferred_count": 5
},
//... Additional campaign objects
]
}
curl --request GET \
--url https://app.luly.ai/api/v1/campaigns \
--header 'authorization: <authorization>'
{
"status": "success",
"campaigns": [
{
"campaign_id": "01e4b3ce-e216-aaaa-bbbb-9ac5ac3b87d0",
"campaign_name": "Example_2307_02",
"count": 1082,
"human_ended": 636,
"assistant_ended": 264,
"human_answered": 422,
"voicemail_answered": 396,
"unknown_answered": 258,
"transferred_count": 5
},
//... Additional campaign objects
]
}