Skip to main content
GET
/
orgs
/
{org_id}
/
knowledge
/
contents
/
{content_id}
/
chunks
[
  {
    "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

Query Parameters

status
enum<string>
Available options:
ALL,
PENDING,
PROCESSING,
PROCESSED,
FAILED
page
number

Page number

take
number

Number of items to take

next
string

Next page token (Only used on special endpoints)

Response

200 - application/json

An array of vector chunks.

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