POST
/
api
/
v1
/
insights
/
folders
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.create(request={
        "name": "customer-complaints",
        "label": "support",
        "description": "Call recordings related to customer complaints",
    })

    # 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"
}

Authorizations

Syllable-API-Key
string
header
required

Body

application/json

Request model to create/update an insight upload folder.

Response

200
application/json
Successful Response

Response model for an insight upload folder.