ya
Yandex Disk — это the cloud storage component of the Yandex 360 suite, offering 10 GB free и up to 3 TB для paid plans. Its REST API allows full file management including listing, uploading, downloading, и organizing files и folders.
С помощью Yandex 360 Disk интеграции в AACFlow можно:
- Список files: Browse files и folders at a given path
- Загрузить file: Store files to Yandex Disk from a URL или uploaded content
- Удалить resource: Remove files или folders permanently
- Make folder: Создать новый directories in the storage
Эта интеграция позволяет automated file management и cloud storage workflows using Yandex Disk.
Инструкции по использованию
Интегрируйте Yandex Disk в рабочий процесс. Требуется Yandex OAuth token с disk access scope. Tokens are obtained via the OAuth flow at oauth.yandex.ru.
Инструменты
yandex_disk_list_files
Список files и folders
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
accessToken | string | Да | Yandex OAuth token |
path | string | Нет | Path to list (default: root) |
limit | number | Нет | Maximum items to return |
offset | number | Нет | Pagination offset |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
items | array | Массив file/folder objects |
total | number | Total items count |
yandex_disk_upload_file
Загрузить a file to Yandex Disk
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
accessToken | string | Да | Yandex OAuth token |
path | string | Да | Target path on Yandex Disk |
url | string | Да | URL of the file to upload |
overwrite | boolean | Нет | Overwrite if file exists |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
href | string | Operation URL |
success | boolean | Whether upload was initiated |
yandex_disk_make_folder
Создать новый folder
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
accessToken | string | Да | Yandex OAuth token |
path | string | Да | Path of the new folder |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
href | string | Created folder href |
success | boolean | Произошла ли folder was created |
Ссылки
- Official API: https://yandex.ru/dev/disk/api/reference/
- AACFlow block source: apps/aacflow/blocks/blocks/yandex_360_disk.ts

