Files
Upload File To Folder
folders.files.upload(strfolder_id, FileUploadParams**kwargs) -> FileUploadResponse
POST/v1/folders/{folder_id}/upload
List Files For Folder
folders.files.list(strfolder_id, FileListParams**kwargs) -> SyncArrayPage[FileListResponse]
GET/v1/folders/{folder_id}/files
Retrieve File
folders.files.retrieve(strfile_id, FileRetrieveParams**kwargs) -> FileRetrieveResponse
GET/v1/folders/{folder_id}/files/{file_id}
Delete File From Folder
folders.files.delete(strfile_id, FileDeleteParams**kwargs)
DELETE/v1/folders/{folder_id}/{file_id}
ModelsExpand Collapse
class FileUploadResponse: …
class FileUploadResponse: …
Representation of a single FileMetadata
Deprecatedsource_id: str
Deprecatedsource_id: str
Deprecated: Use folder_id field instead. The unique identifier of the source associated with the document.
content: Optional[str]
content: Optional[str]
Optional full-text content of the file; only populated on demand due to its size.
class FileListResponse: …
class FileListResponse: …
Representation of a single FileMetadata
Deprecatedsource_id: str
Deprecatedsource_id: str
Deprecated: Use folder_id field instead. The unique identifier of the source associated with the document.
content: Optional[str]
content: Optional[str]
Optional full-text content of the file; only populated on demand due to its size.
class FileRetrieveResponse: …
class FileRetrieveResponse: …
Representation of a single FileMetadata
Deprecatedsource_id: str
Deprecatedsource_id: str
Deprecated: Use folder_id field instead. The unique identifier of the source associated with the document.
content: Optional[str]
content: Optional[str]
Optional full-text content of the file; only populated on demand due to its size.
Skip to content