GET
/
api
/
v1
/
insights
/
folders
/
{folder_id}
/
files
import os
import syllable_sdk
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.insights.folders.list_files(folder_id=74439, page=0, search_fields=[
        syllable_sdk.InsightsUploadFileProperties.START_TIME,
    ], search_field_values=[
        "Some Object Name",
    ], start_datetime="2023-01-01T00:00:00Z", end_datetime="2024-01-01T00:00:00Z")

    # Handle response
    print(res)
{
  "items": [
    {
      "id": 182764,
      "folder_id": 182764,
      "filename": "customer-complaints.wav",
      "object_key": "UPLOAD_CALL_ID/recording/2025/04/22/15/00/ce7d212e-80b0-4f0b-9e01-74322f146611.mp3",
      "call_id": "12345",
      "agent_number": "1234567890",
      "customer_number": "0987654321",
      "duration": 305.5,
      "start_time": "2025-05-07T00:00:00Z",
      "end_time": "2025-05-08T00:00:00Z",
      "error_message": "File not found",
      "metadata": {
        "duration": "00:10:00",
        "size": "10MB"
      },
      "created_at": "2025-05-07T00:00:00Z"
    }
  ],
  "page": 0,
  "page_size": 25,
  "total_pages": 4,
  "total_count": 100
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

folder_id
integer
required

Query Parameters

page
integer | null
default:0

The page number from which to start (0-based)

Required range: x >= 0
Examples:

0

limit
integer
default:25

The maximum number of items to return

Required range: x >= 0
Examples:

25

search_fields
enum<string>[]

String names of fields to search. Correspond by index to search field values

Available options:
filename,
call_id,
agent_number,
customer_number,
duration,
start_time,
end_time,
created_at
Examples:

"name"

search_field_values
string[]

Values of fields to search. Correspond by index to search fields. Unless field name contains "list", an individual search field value cannot be a list

Examples:

"Some Object Name"

order_by
enum<string> | null

The field whose value should be used to order the results

Available options:
filename,
call_id,
agent_number,
customer_number,
duration,
start_time,
end_time,
created_at
Examples:

"name"

order_by_direction
enum<string> | null

The direction in which to order the results

Available options:
asc,
desc
fields
enum<string>[] | null

The fields to include in the response

Available options:
filename,
call_id,
agent_number,
customer_number,
duration,
start_time,
end_time,
created_at
start_datetime
string | null

The start datetime for filtering results

Examples:

"2023-01-01T00:00:00Z"

end_datetime
string | null

The end datetime for filtering results

Examples:

"2024-01-01T00:00:00Z"

Response

200
application/json
Successful Response

The response is of type object.