Skip to main content
GET
/
orgs
/
{org_id}
/
knowledge
/
contents
/
{content_id}
/
chunks
/
{chunk_id}
{
  "id": "<string>",
  "content_id": "<string>",
  "char_start": 123,
  "char_end": 123,
  "chunk_index": 123,
  "status": "PENDING",
  "error": "<string>",
  "created_at": "2023-12-25",
  "updated_at": "2023-12-25"
}

Path Parameters

org_id
string
required

The ID of the org

content_id
string
required

The ID of the content

chunk_id
string
required

The ID of the content chunk

Response

200 - application/json

The content chunk details.

Vector chunk schema

id
string
required
content_id
string
required
char_start
number
required
char_end
number
required
chunk_index
number
required
status
enum<string>
required

Status of vector chunk processing

Available options:
PENDING,
PROCESSING,
PROCESSED,
FAILED
error
string | null
required

Error message if vector chunk processing failed

created_at
string<date> | null
required
updated_at
string<date> | null
required