r7
Р7 Офис это русский enterprise office platform providing document editors compatible с Microsoft Office formats (docx, xlsx, pptx). It uses WOPI и REST APIs для document management integration.
С помощью Р7 Офис интеграции в AACFlow можно:
- Получить Documents: Список documents stored in Р7 Офис
- Создать Document: Создать новый Word, Excel, или PowerPoint-compatible documents
- Удалить Document: Remove documents from Р7 Офис
Эта интеграция позволяет automated document management для organizations using Р7 Офис as a compliant Russian alternative to Microsoft Office 365.
Инструкции по использованию
Интегрируйте Р7 Офис в рабочий процесс для manage office documents. Требуется Р7 Офис API bearer token from your organization's Р7 Офис deployment. Contact your system administrator для API access credentials.
Инструменты
r7_office_get_documents
Список documents
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
bearerToken | string | Да | Р7 Офис API bearer token |
limit | number | Нет | Maximum documents to return |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
documents | array | Массив document objects |
total | number | Total documents count |
r7_office_create_document
Создать новый document
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
bearerToken | string | Да | Р7 Офис API bearer token |
title | string | Да | Document title |
documentType | string | Нет | Type: docx, xlsx, or pptx |
folderId | string | Нет | Target folder ID |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
documentId | string | Created document ID |
url | string | Document URL |
r7_office_delete_document
Удалить document
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
bearerToken | string | Да | Р7 Офис API bearer token |
documentId | string | Да | Document ID to delete |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
success | boolean | Произошла ли deletion succeeded |
Ссылки
- Official API: https://r7-office.ru/api/
- AACFlow block source: apps/aacflow/blocks/blocks/r7_office.ts

