Načtení stránkovaného seznamu vašich nahraných souborů.
const result = await client.files.list({ page: 1, limit: 10 });
for (const file of result.data) {
console.log(`${file.filename} (${file.size} bytes)`);
}
{
"data": [
{
"id": "file_abc123",
"filename": "catalog.pdf",
"size": 1048576,
"content_type": "application/pdf",
"created_at": "2025-03-10T14:30:00.000Z"
}
],
"pagination": { "page": 1, "limit": 10, "total": 5 }
}
const result = await client.files.list({ page: 1, limit: 10 });
for (const file of result.data) {
console.log(`${file.filename} (${file.size} bytes)`);
}
{
"data": [
{
"id": "file_abc123",
"filename": "catalog.pdf",
"size": 1048576,
"content_type": "application/pdf",
"created_at": "2025-03-10T14:30:00.000Z"
}
],
"pagination": { "page": 1, "limit": 10, "total": 5 }
}
const result = await client.files.list({ page: 1, limit: 10 });
for (const file of result.data) {
console.log(`${file.filename} (${file.size} bytes)`);
}
{
"data": [
{
"id": "file_abc123",
"filename": "catalog.pdf",
"size": 1048576,
"content_type": "application/pdf",
"created_at": "2025-03-10T14:30:00.000Z"
}
],
"pagination": { "page": 1, "limit": 10, "total": 5 }
}