my
МойОфис is a Russian enterprise office suite providing document editors (text, spreadsheet, presentation) as an alternative to Microsoft Office and Google Workspace. Its API supports document management operations.
With the МойОфис integration in AACFlow, you can:
- Get Documents: List documents stored in МойОфис
- Create Document: Create new text, spreadsheet, or presentation documents
- Delete Document: Remove documents from МойОфис
This integration enables automated document management workflows for organizations using МойОфис as their primary productivity suite.
Nutzungsanleitung
Integrate МойОфис into the workflow to manage documents. Requires a МойОфис API bearer token from your organization's МойОфис deployment. Contact your МойОфис administrator for API access.
Tools
myoffice_get_documents
List documents
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
bearerToken | string | Ja | МойОфис API bearer token |
limit | number | Nein | Maximum documents to return |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
documents | array | Array of document objects |
total | number | Total documents count |
myoffice_create_document
Create a new document
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
bearerToken | string | Ja | МойОфис API bearer token |
title | string | Ja | Document title |
documentType | string | Nein | Type: text, spreadsheet, or presentation |
folderId | string | Nein | Target folder ID |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
documentId | string | Created document ID |
url | string | Document URL |
myoffice_delete_document
Delete a document
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
bearerToken | string | Ja | МойОфис API bearer token |
documentId | string | Ja | Document ID to delete |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
success | boolean | Whether the deletion succeeded |
Links
- Official API: https://developers.myoffice.ru/api/
- AACFlow block source: apps/aacflow/blocks/blocks/myoffice.ts

