ma
Mango Office is Russia's leading cloud telephony and virtual PBX provider. Its API allows initiating calls, retrieving call history, and downloading call recordings for automation and CRM integration.
With the Mango Office integration in AACFlow, you can:
- Make call: Initiate an outbound call between two numbers via the VPBX
- Get call history: Retrieve historical call records with filtering
- Get recording: Download the audio recording of a specific call
This integration enables automated telephony workflows, call logging, and CRM synchronization.
Nutzungsanleitung
Integrate Mango Office into the workflow. Requires an API key and API secret from your Mango Office account under Settings → Integration → API.
Tools
mango_office_call
Initiate an outbound call
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiKey | string | Ja | Mango Office API key |
apiSecret | string | Ja | Mango Office API secret |
from | string | Ja | Caller phone number or extension |
to | string | Ja | Destination phone number |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
callId | string | Initiated call ID |
success | boolean | Whether the call was initiated |
mango_office_get_calls
Get call history
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiKey | string | Ja | Mango Office API key |
apiSecret | string | Ja | Mango Office API secret |
dateFrom | string | Ja | Start date (YYYY-MM-DD) |
dateTo | string | Nein | End date (YYYY-MM-DD) |
limit | number | Nein | Maximum records to return |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
calls | array | Array of call record objects |
total | number | Total calls count |
mango_office_get_recording
Download a call recording
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
apiKey | string | Ja | Mango Office API key |
apiSecret | string | Ja | Mango Office API secret |
callId | string | Ja | Call ID to download recording for |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
url | string | Temporary recording download URL |
success | boolean | Whether the recording is available |
Links
- Official API: https://www.mango-office.ru/products/virtual-pbx/integration/
- AACFlow block source: apps/aacflow/blocks/blocks/mango_office.ts

