ya
Yandex 360 for Business is Russia's leading corporate productivity suite, providing email (Yandex Mail), cloud storage (Yandex Disk), calendar, messenger, and video conferencing. Its Directory API allows programmatic management of users, departments, groups, and domains.
With the Yandex 360 integration in AACFlow, you can:
- List users: Enumerate all users in the organization
- Get user: Retrieve details of a specific user
- Create user: Add a new user to the organization
- Update user: Modify user details and account settings
- List departments: Browse the organizational chart
- List domains: Enumerate connected email domains
This integration enables automated user lifecycle management for organizations using Yandex 360 as their corporate suite.
Usage Instructions
Integrate Yandex 360 into the workflow. Requires a Yandex 360 API key and organization ID from your admin panel at 360.yandex.ru.
Tools
yandex_360_list_users
List all organization users
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Yandex 360 API key |
orgId | string | Yes | Organization ID |
perPage | number | No | Results per page |
page | number | No | Page number |
Output
| Parameter | Type | Description |
|---|---|---|
users | array | Array of user objects |
total | number | Total users count |
yandex_360_create_user
Create a new user
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Yandex 360 API key |
orgId | string | Yes | Organization ID |
login | string | Yes | User login (without domain) |
firstName | string | Yes | First name |
lastName | string | Yes | Last name |
password | string | Yes | Initial password |
departmentId | number | No | Department ID |
Output
| Parameter | Type | Description |
|---|---|---|
userId | number | Created user ID |
login | string | Full email login |
success | boolean | Whether the user was created |
Links
- Official API: https://yandex.ru/dev/api360/
- AACFlow block source: apps/aacflow/blocks/blocks/yandex_360.ts

