Integration Nodes
Use integration nodes to send or fetch data from external systems.
Node List
| Node | Required Parameters | Main Output |
|---|---|---|
| Get Request | URL | Response |
| Post Request | URL, Body | Response |
| Deliver via webhook | Target URL, Body | Delivery result |
| Telegram Bot | Bot Token, Chat ID, Message | Message delivery |
Input / Output Example
- Input chain:
Extract Data With AI -> Deliver via webhook - Output example: parsed JSON payload delivered to your CRM/webhook endpoint.
Common Errors
- Invalid endpoint URL or unreachable host.
- Authentication/token issues in Telegram or API endpoints.
- Payload format mismatch (expected JSON shape differs from sent body).
- Timeout or temporary service unavailability.
Retry Tips
- Keep endpoint URLs fixed and verified before scheduling large runs.
- Validate payload shape with a test request before enabling automation at scale.
- Use fallback branches for failed integrations (for example, also send Telegram alert on webhook failure).
Transient network and server failures are typically retried automatically. Authentication and payload schema issues usually require manual fixes.
Last updated on