Check out our upcoming events and meetups! View events →
Get all embedded files for a given user bucket, including their processing status.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const bucket = await client.ai.embeddings.buckets.retrieve('bucket_name');
console.log(bucket.data);{
"data": [
{
"filename": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_embedded_at": "2023-11-07T05:31:56Z",
"error_reason": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const bucket = await client.ai.embeddings.buckets.retrieve('bucket_name');
console.log(bucket.data);{
"data": [
{
"filename": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_embedded_at": "2023-11-07T05:31:56Z",
"error_reason": "<string>"
}
]
}