my
МойОфис это русский enterprise office suite providing document editors (text, spreadsheet, presentation) as an alternative to Microsoft Office и Google Workspace. Its API supports document management operations.
С помощью МойОфис интеграции в AACFlow можно:
- Получить Documents: Список documents stored in МойОфис
- Создать Document: Создать новый text, spreadsheet, или presentation documents
- Удалить Document: Remove documents from МойОфис
Эта интеграция позволяет automated document management workflows для organizations using МойОфис as their primary productivity suite.
Инструкции по использованию
Интегрируйте МойОфис в рабочий процесс для manage documents. Требуется МойОфис API bearer token from your organization's МойОфис deployment. Contact your МойОфис administrator для API access.
Инструменты
myoffice_get_documents
Список documents
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
bearerToken | string | Да | МойОфис API bearer token |
limit | number | Нет | Maximum documents to return |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
documents | array | Массив document objects |
total | number | Total documents count |
myoffice_create_document
Создать новый document
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
bearerToken | string | Да | МойОфис API bearer token |
title | string | Да | Document title |
documentType | string | Нет | Type: text, spreadsheet, or presentation |
folderId | string | Нет | Target folder ID |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
documentId | string | Created document ID |
url | string | Document URL |
myoffice_delete_document
Удалить document
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
bearerToken | string | Да | МойОфис API bearer token |
documentId | string | Да | Document ID to delete |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
success | boolean | Произошла ли deletion succeeded |
Ссылки
- Official API: https://developers.myoffice.ru/api/
- AACFlow block source: apps/aacflow/blocks/blocks/myoffice.ts

