Р7 Офис
List, create, and delete documents in Р7 Офис Russian office suite
r7
Р7 Офис is a Russian enterprise office platform providing document editors compatible with Microsoft Office formats (docx, xlsx, pptx). It uses WOPI and REST APIs for document management integration.
With the Р7 Офис integration in AACFlow, you can:
- Get Documents: List documents stored in Р7 Офис
- Create Document: Create new Word, Excel, or PowerPoint-compatible documents
- Delete Document: Remove documents from Р7 Офис
This integration enables automated document management for organizations using Р7 Офис as a compliant Russian alternative to Microsoft Office 365.
Usage Instructions
Integrate Р7 Офис into the workflow to manage office documents. Requires a Р7 Офис API bearer token from your organization's Р7 Офис deployment. Contact your system administrator for API access credentials.
Tools
r7_office_get_documents
List documents
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
bearerToken | string | Yes | Р7 Офис API bearer token |
limit | number | No | Maximum documents to return |
Output
| Parameter | Type | Description |
|---|---|---|
documents | array | Array of document objects |
total | number | Total documents count |
r7_office_create_document
Create a new document
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
bearerToken | string | Yes | Р7 Офис API bearer token |
title | string | Yes | Document title |
documentType | string | No | Type: docx, xlsx, or pptx |
folderId | string | No | Target folder ID |
Output
| Parameter | Type | Description |
|---|---|---|
documentId | string | Created document ID |
url | string | Document URL |
r7_office_delete_document
Delete a document
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
bearerToken | string | Yes | Р7 Офис API bearer token |
documentId | string | Yes | Document ID to delete |
Output
| Parameter | Type | Description |
|---|---|---|
success | boolean | Whether the deletion succeeded |
Links
- Official API: https://r7-office.ru/api/
- AACFlow block source: apps/aacflow/blocks/blocks/r7_office.ts

