List Documents
GET/documents
A list of Datasphere Documents
Request
Responses
- 200
- 401
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
Unique ID of a Document.
Name of the Document.
Possible values: [submitted
, in_progress
, completed
, failed
]
The current Status of the Document.
Document tags.
Possible values: [sentence
, paragraph
, page
, sliding
]
Strategy to use when chunking the document.
Max Sentences per Chunk (only used for chunking type 'sentence')
Split on Newlines (only used for chunking type 'sentence')
Overlap Size (only used for chunking type 'sliding')
Chunk Size (only used for chunking type 'sliding')
Number of Chunks in the Document.
Document Creation Date.
Document Update Date.
links
object
required
Link of the current page
Link to the first page
Link to the next page
{
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"filename": "player_list.pdf",
"status": "submitted",
"tags": [
"sports",
"football",
"game"
],
"chunking_strategy": "sentence",
"max_sentences_per_chunk": "80",
"split_newlines": true,
"overlap_size": "10",
"chunk_size": "50",
"number_of_chunks": 2345,
"created_at": "2024-05-06T12:20-12Z",
"updated_at": "2024-05-06T12:20-12Z"
}
],
"links": {
"self": "https://{space_name}.signalwire.com/api/data_sphere/documents?page_number=0&page_size=50",
"first": "https://{space_name}.signalwire.com/api/data_sphere/documents?page_number=0&page_size=50",
"next": "https://{space_name}.signalwire.com/api/data_sphere/documents?page_number=1&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca"
}
}
Access is unauthorized.
- application/json
- Schema
Schema
string
Possible values: [Unauthorized
]
The server cannot find the requested resource.
- application/json
- Schema
Schema
string
Possible values: [Not Found
]