ma
Max is a business-focused Russian messenger. Its Bot REST API allows automated message delivery and update polling, making it suitable for notifications, support bots, and internal communication workflows.
With the Max integration in AACFlow, you can:
- Send messages: Deliver text messages to Max chats programmatically
- Get updates: Poll for new incoming messages and events
This integration enables automated communication workflows using the Max messenger platform.
Usage Instructions
Integrate Max into the workflow. Requires a Max API Bearer token obtained from the Max developer portal at max.ru/developers.
Tools
max_send_message
Send a message to a Max chat
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
token | string | Yes | Max API Bearer token |
chatId | string | Yes | Target chat ID |
text | string | Yes | Message text |
Output
| Parameter | Type | Description |
|---|---|---|
messageId | string | ID of the sent message |
success | boolean | Whether the message was delivered |
max_get_updates
Poll for new messages and events
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
token | string | Yes | Max API Bearer token |
offset | number | No | Update offset for pagination |
limit | number | No | Maximum updates to return |
Output
| Parameter | Type | Description |
|---|---|---|
updates | array | Array of update objects |
count | number | Number of updates returned |
Links
- Official API: https://max.ru/developers
- AACFlow block source: apps/aacflow/blocks/blocks/max.ts

