Интеграции FormFlow: Автоматизируйте рабочий процесс
Connect your forms to the tools your team already uses — no code required.
FormFlow integrates with 6 major platforms out of the box, plus unlimited custom webhooks and a full REST API for advanced workflows.
Native Integrations
Connect to Your Favorite Tools
Every integration is configured in under 60 seconds. Toggle it on, pick your destination, and start routing form data where it belongs.
Slack
Push form submissions directly into any Slack channel or DM. Tag team members, include file attachments, and trigger threaded conversations — all from a single form response. Supports up to 50 channels per workspace.
Telegram
Send instant notifications to Telegram bots or groups. Configure custom bot tokens, format messages with Markdown or HTML, and attach uploaded files as Telegram documents. Works with both private and public channels.
Bitrix24
Create leads, deals, and contacts in Bitrix24 automatically. Map form fields to CRM entities, set deal stages based on answers, and attach supporting documents. Syncs in real time via Bitrix24's inbound webhook API.
AmoCRM
Route form data into AmoCRM pipelines with full field mapping. Auto-create leads, assign them to departments, and tag by source. Supports custom field types including multi-select, phone, and email validation.
Google Sheets
Append every submission to a Google Spreadsheet in real time. Choose an existing sheet or create a new one, pick the target range, and let FormFlow handle authentication via OAuth 2.0. No app scripts needed.
Zapier
Connect FormFlow to over 5,000 apps through Zapier. Trigger Zaps on form submission, route data through multi-step workflows, and combine FormFlow with tools like Mailchimp, HubSpot, Trello, and more.
Webhooks
Send Data Anywhere with Webhooks
Don't see your tool in the native integrations list? No problem — FormFlow fires a raw JSON payload to any HTTPS endpoint the moment a form is submitted.
Each webhook call includes a X-FormFlow-Signature header (HMAC-SHA256) so your server can verify authenticity. You get the full submission object: field keys, values, timestamps, IP address, and user agent. Retries happen on 5xx responses with exponential backoff — 3 attempts, 2-second intervals.
Webhooks are included on every plan. Business-tier accounts get up to 10,000 webhook calls per month with priority delivery through our AWS SNS-backed queue. Enterprise customers can configure custom retry policies and dead-letter queues via the admin dashboard.
Example payload structure:
{ "form_id": "ff_8a3c1d", "submission_id": "sub_9f2e41", "submitted_at": "2025-06-12T14:33:07Z", "fields": { "full_name": "Maria Volkova", "email": "m.volkova@acme.ru", "budget": "250000", "service": "consulting" } }
REST API
Build Custom Workflows with the FormFlow API
The FormFlow REST API exposes every feature available in the dashboard — form creation, submission retrieval, analytics, and user management — through a consistent, versioned endpoint.
Authenticate with API keys generated in Settings → Developers. Each key can be scoped to read-only, read-write, or admin privileges. Rate limits are 120 requests per minute for Standard plans and 600 per minute for Business and Enterprise tiers.
Key endpoints include GET /v1/forms for listing forms, POST /v1/forms/{id}/submissions for programmatic submission, and GET /v1/submissions/{id}/export for CSV or JSON export. Webhook management is available at PUT /v1/forms/{id}/webhooks.
Full OpenAPI 3.0 documentation is available at docs.formflow.io/api. SDKs are published for Python, Node.js, and PHP on GitHub under the MIT license.