Skip to main content

Get file-level embedding statuses for a bucket

GET 
/ai/embeddings/buckets/:bucket_name

Get all embedded files for a given user bucket, including their processing status.

Request

Path Parameters

    bucket_name Bucket Namerequired

Responses

200: Successful Response

422: Validation Error

Request samples


curl -L 'https://api.telnyx.com/v2/ai/embeddings/buckets/:bucket_name' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"filename": "string",
"status": "string",
"created_at": "2024-07-26T07:46:17.004Z",
"updated_at": "2024-07-26T07:46:17.004Z",
"last_embedded_at": "2024-07-26T07:46:17.004Z",
"error_reason": "string"
}
]
}