insights.folders
Get Insights Folder Details
agents
channels.twilio.numbers
agents.test
conversations
data_sources
events
incidents
insights
insights.folders
insights.workflows
insights.tools
custom_messages
prompts
session_labels
sessions.transcript
sessions.full-summary
sessions.latency
session_debug
channels.targets
directory
dashboards
outbound.batches
- GETList Outbound Communication Batches
- POSTCreate Outbound Communication Batch
- GETGet Outbound Communication Batch
- PUTUpdate Outbound Communication Batch
- DELDelete Outbound Communication Batch
- POSTUpload Outbound Communication Batch
- GETFetch Outbound Communication Batch Results
- POSTCreate Outbound Communication Request
- POSTDelete Requests By List Of Reference Ids
outbound.campaigns
language_groups
insights.folders
Get Insights Folder Details
GET
/
api
/
v1
/
insights
/
folders
/
{folder_id}
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.insights.folders.get_by_id(folder_id=931598)
# Handle response
print(res)
{
"name": "customer-complaints",
"label": "support",
"description": "Call recordings related to customer complaints",
"id": 182764,
"created_at": "2025-05-07T00:00:00Z",
"updated_at": "2025-05-08T00:00:00Z",
"last_updated_by": "user@email.com",
"folder_stats": {
"count": 10,
"total_duration": "10:00:00",
"total_size": "213MB"
}
}
Authorizations
Path Parameters
Response
200
application/json
Successful Response
Response model for an insight upload folder details.
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.insights.folders.get_by_id(folder_id=931598)
# Handle response
print(res)
{
"name": "customer-complaints",
"label": "support",
"description": "Call recordings related to customer complaints",
"id": 182764,
"created_at": "2025-05-07T00:00:00Z",
"updated_at": "2025-05-08T00:00:00Z",
"last_updated_by": "user@email.com",
"folder_stats": {
"count": 10,
"total_duration": "10:00:00",
"total_size": "213MB"
}
}