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.update(folder_id=567518, insights_folder_input={
"name": "customer-complaints",
"label": "support",
"description": "Call recordings related to customer complaints",
})
# Handle response
print(res)