MoEngage Connector Code Wiki
MoEngage Connector Code Wiki
Alto connector map
MoEngage at a glance
Insights-led customer engagement platform with AI-powered automation across channels
Page Summary
Understand what the MoEngage connector contributes and where to start implementation or review.
Tajo has catalog knowledge for this connector; runtime enablement depends on the API, MCP, or docs-only surface.
Normalize source data into stable Tajo objects, then activate it through Brevo contacts, events, lists, campaigns, or operational workflows.
Integration Profile
| Property | Value |
|---|---|
| Catalog status | Docs |
| Runtime in Alto | Cataloged |
| Alto category | Omnichannel Engagement |
| Setup complexity | advanced |
| Vendor docs | developers.moengage.com/hc/en-us |
| Primary API host | Vendor-dependent |
| Last researched | 2026-04-12 |
System Shape
- Tajo authenticates against MoEngage using the available API, MCP, or documented integration surface.
- The connector reads source objects, events, and operational metadata from MoEngage.
- Tajo normalizes the records into stable external IDs and explicit sync resources.
- Brevo receives the activation layer: contacts, attributes, lists, transactional sends, campaign triggers, or CRM context.
- Logs, retries, and partial failures remain visible in Tajo so the integration can be operated safely.
Data Model
- Contact and identity records
The connector should make source records idempotent by keeping a stable key such as a vendor object ID, email address, event ID, ticket ID, order ID, or campaign ID. If the vendor only exposes list APIs, Tajo should store the cursor strategy and replay policy explicitly.
Implementation Map
| Area | What to verify |
|---|---|
| Authentication | Confirm scopes, token lifetime, revocation, and whether OAuth or API key auth is supported. |
| Pagination | Prefer cursor or updated-at pagination; document offset fallbacks and maximum page size. |
| Webhooks | Verify signature headers, replay windows, event IDs, and retry behavior before enabling live ingestion. |
| Rate limits | Capture vendor-specific retry headers and backoff policy in connector smoke tests. |
| Brevo mapping | Decide which fields become contact attributes, which records become events, and which actions trigger campaigns. |
Current Catalog Notes
No official OpenAPI spec or MCP located.
API surface captured by Alto:
- Base URL or endpoint:
Docs-first integration surface - Documentation: Vendor docs
- Catalog source:
/home/ubuntu/alto/src/data/connectors.v2.ts
Tajo Review Checklist
- Does MoEngage have a verified auth path for production workspaces?
- Are primary resources mapped to stable external IDs?
- Is historical backfill separated from real-time webhook ingestion?
- Are retries idempotent for creates, updates, sends, and event ingestion?
- Are Brevo contact attributes, custom events, and campaign triggers named consistently?
- Are failure modes visible enough for an operator to resolve without reading code?