List Data Sources for Indexing Job for a Knowledge Base
client.KnowledgeBases.IndexingJobs.GetDataSources(ctx, indexingJobUuid) (*KnowledgeBaseIndexingJobGetDataSourcesResponse, error)
/v2/gen-ai/indexing_jobs/{indexing_job_uuid}/data_sources
To list all datasources for an indexing job, send a GET request to /v2/gen-ai/indexing_jobs/{indexing_job_uuid}/data_sources.
Parameters
indexingJobUuid string
Returns
List Data Sources for Indexing Job for a Knowledge Base
package main
import (
"context"
"fmt"
"github.com/stainless-sdks/-go"
"github.com/stainless-sdks/-go/option"
)
func main() {
client := gradient.NewClient(
option.WithAccessToken("My Access Token"),
)
response, err := client.KnowledgeBases.IndexingJobs.GetDataSources(context.TODO(), `"123e4567-e89b-12d3-a456-426614174000"`)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.IndexedDataSources)
}
{
"indexed_data_sources": [
{
"completed_at": "2023-01-01T00:00:00Z",
"data_source_uuid": "123e4567-e89b-12d3-a456-426614174000",
"error_details": "example string",
"error_msg": "example string",
"failed_item_count": "12345",
"indexed_file_count": "12345",
"indexed_item_count": "12345",
"removed_item_count": "12345",
"skipped_item_count": "12345",
"started_at": "2023-01-01T00:00:00Z",
"status": "DATA_SOURCE_STATUS_UNKNOWN",
"total_bytes": "12345",
"total_bytes_indexed": "12345",
"total_file_count": "12345"
}
]
}Returns Examples
{
"indexed_data_sources": [
{
"completed_at": "2023-01-01T00:00:00Z",
"data_source_uuid": "123e4567-e89b-12d3-a456-426614174000",
"error_details": "example string",
"error_msg": "example string",
"failed_item_count": "12345",
"indexed_file_count": "12345",
"indexed_item_count": "12345",
"removed_item_count": "12345",
"skipped_item_count": "12345",
"started_at": "2023-01-01T00:00:00Z",
"status": "DATA_SOURCE_STATUS_UNKNOWN",
"total_bytes": "12345",
"total_bytes_indexed": "12345",
"total_file_count": "12345"
}
]
}