ya
Yandex Disk is the cloud storage component of the Yandex 360 suite, offering 10 GB free and up to 3 TB for paid plans. Its REST API allows full file management including listing, uploading, downloading, and organizing files and folders.
With the Yandex 360 Disk integration in AACFlow, you can:
- List files: Browse files and folders at a given path
- Upload file: Store files to Yandex Disk from a URL or uploaded content
- Delete resource: Remove files or folders permanently
- Make folder: Create new directories in the storage
This integration enables automated file management and cloud storage workflows using Yandex Disk.
Usage Instructions
Integrate Yandex Disk into the workflow. Requires a Yandex OAuth token with disk access scope. Tokens are obtained via the OAuth flow at oauth.yandex.ru.
Tools
yandex_disk_list_files
List files and folders
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
accessToken | string | Yes | Yandex OAuth token |
path | string | No | Path to list (default: root) |
limit | number | No | Maximum items to return |
offset | number | No | Pagination offset |
Output
| Parameter | Type | Description |
|---|---|---|
items | array | Array of file/folder objects |
total | number | Total items count |
yandex_disk_upload_file
Upload a file to Yandex Disk
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
accessToken | string | Yes | Yandex OAuth token |
path | string | Yes | Target path on Yandex Disk |
url | string | Yes | URL of the file to upload |
overwrite | boolean | No | Overwrite if file exists |
Output
| Parameter | Type | Description |
|---|---|---|
href | string | Operation URL |
success | boolean | Whether upload was initiated |
yandex_disk_make_folder
Create a new folder
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
accessToken | string | Yes | Yandex OAuth token |
path | string | Yes | Path of the new folder |
Output
| Parameter | Type | Description |
|---|---|---|
href | string | Created folder href |
success | boolean | Whether the folder was created |
Links
- Official API: https://yandex.ru/dev/disk/api/reference/
- AACFlow block source: apps/aacflow/blocks/blocks/yandex_360_disk.ts

