GET
/
api
/
v0
/
documents
/
{document_id}
{
  "id": 123,
  "name": "string",
  "folder_id": {},
  "file_path": {},
  "file_type": "string",
  "file_url": {},
  "summary": "string",
  "visibility": "string",
  "version": 123,
  "owner_id": 123,
  "created_at": "string",
  "updated_at": "string",
  "tags": [
    "string"
  ]
}

Get a document by ID

Retrieves a document by its unique identifier.

Path Parameters

string
required

No description provided

Response

data
object

The response data for this endpoint.

{
  "id": 123,
  "name": "string",
  "folder_id": {},
  "file_path": {},
  "file_type": "string",
  "file_url": {},
  "summary": "string",
  "visibility": "string",
  "version": 123,
  "owner_id": 123,
  "created_at": "string",
  "updated_at": "string",
  "tags": [
    "string"
  ]
}