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=982079)
# Handle response
print(res){
"name": "<string>",
"id": 123,
"last_updated_by": "<string>",
"folder_stats": {},
"label": "support",
"description": "Call recordings related to customer complaints",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}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=982079)
# Handle response
print(res){
"name": "<string>",
"id": 123,
"last_updated_by": "<string>",
"folder_stats": {},
"label": "support",
"description": "Call recordings related to customer complaints",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Successful Response
Response model for an insight upload folder details.
Human-readable name of insight folder
System-assign folder ID
Email of user who last updated upload folder
optional label assigned to insight folder
"support"
Text description of insight upload folder
"Call recordings related to customer complaints"
Timestamp at which insight upload folder was created
Timestamp at which insight upload folder was last updated