{"templateId":"markdown","sharedDataIds":{},"props":{"metadata":{"markdoc":{"tagList":["tabs","tab","cards","card"]},"type":"markdown"},"seo":{"title":"eCommunicate Omnichannel API","description":"Complete developer documentation for the eCommunicate Omnichannel platform. WhatsApp Cloud, WhatsApp Lite, SMS, Live Chat, and Conversations APIs. Send messages, manage templates, configure webhooks, and build customer engagement at scale.","siteUrl":"https://docs.ecommunicate.co.za","keywords":["eCommunicate API","WhatsApp Business API","SMS API","omnichannel messaging","WhatsApp templates","messaging platform","South Africa messaging API"],"llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"ecommunicate-omnichannel-api","__idx":0},"children":["eCommunicate Omnichannel API"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Build customer engagement at scale. Send WhatsApp templates, SMS, and manage live conversations — all through ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["one unified REST API"]},"."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/getting-started"},"children":["Get Started"]}," ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/omnichannel"},"children":["API Reference"]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"start-building-in-minutes","__idx":1},"children":["Start building in minutes"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Get from zero to your first delivered message in under 5 minutes. One API key, one endpoint, every channel."]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"cURL","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl -X POST https://api.payless4messaging.com/whatsapp-api-service/v2/messages \\\n  -H \"Authorization: YOUR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"channel\": \"WHATSAPP\",\n    \"payload\": {\n      \"sender\": \"+27123456789\",\n      \"templateName\": \"seasonal_promo_text\",\n      \"templateId\": \"your-template-uuid\",\n      \"messageType\": \"NOTIFICATION\",\n      \"messages\": [\n        {\n          \"recipients\": [{ \"to\": \"+27987654321\", \"customerUserId\": \"ZA.1021033720668862\" }],\n          \"components\": [\n            { \"type\": \"body\", \"parameters\": [\"John\"] }\n          ]\n        }\n      ]\n    }\n  }'\n","lang":"bash"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"Node.js","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"javascript","header":{"controls":{"copy":{}}},"source":"const response = await fetch(\n  'https://api.payless4messaging.com/whatsapp-api-service/v2/messages',\n  {\n    method: 'POST',\n    headers: {\n      'Authorization': process.env.ECOMM_API_KEY,\n      'Content-Type': 'application/json',\n    },\n    body: JSON.stringify({\n      channel: 'WHATSAPP',\n      payload: {\n        sender: '+27123456789',\n        templateName: 'seasonal_promo_text',\n        templateId: 'your-template-uuid',\n        messageType: 'NOTIFICATION',\n        messages: [\n          {\n            recipients: [{ to: '+27987654321' }],\n            components: [{ type: 'body', parameters: ['John'] }],\n          },\n        ],\n      },\n    }),\n  }\n);\n\nconst data = await response.json();\nconsole.log(data);\n// { status: \"ACCEPTED\", requestId: \"c3a1f8e2-...\", channel: \"WHATSAPP\" }\n","lang":"javascript"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"Python","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"python","header":{"controls":{"copy":{}}},"source":"import os\nimport requests\n\nresponse = requests.post(\n    \"https://api.payless4messaging.com/whatsapp-api-service/v2/messages\",\n    headers={\n        \"Authorization\": os.environ[\"ECOMM_API_KEY\"],\n        \"Content-Type\": \"application/json\",\n    },\n    json={\n        \"channel\": \"WHATSAPP\",\n        \"payload\": {\n            \"sender\": \"+27123456789\",\n            \"templateName\": \"seasonal_promo_text\",\n            \"templateId\": \"your-template-uuid\",\n            \"messageType\": \"NOTIFICATION\",\n            \"messages\": [\n                {\n                    \"recipients\": [{\"to\": \"+27987654321\"}],\n                    \"components\": [{\"type\": \"body\", \"parameters\": [\"John\"]}],\n                }\n            ],\n        },\n    },\n)\n\nprint(response.json())\n","lang":"python"},"children":[]}]},{"$$mdtype":"Tag","name":"TabItemFragment","attributes":{"label":"Java","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"java","header":{"controls":{"copy":{}}},"source":"import java.net.URI;\nimport java.net.http.*;\nimport java.net.http.HttpResponse.BodyHandlers;\n\nHttpClient client = HttpClient.newHttpClient();\n\nString json = \"\"\"\n    {\n      \"channel\": \"WHATSAPP\",\n      \"payload\": {\n        \"sender\": \"+27123456789\",\n        \"templateName\": \"seasonal_promo_text\",\n        \"templateId\": \"your-template-uuid\",\n        \"messageType\": \"NOTIFICATION\",\n        \"messages\": [\n          {\n            \"recipients\": [{ \"to\": \"+27987654321\" }],\n            \"components\": [\n              { \"type\": \"body\", \"parameters\": [\"John\"] }\n            ]\n          }\n        ]\n      }\n    }\n    \"\"\";\n\nHttpRequest request = HttpRequest.newBuilder()\n    .uri(URI.create(\"https://api.payless4messaging.com/whatsapp-api-service/v2/messages\"))\n    .header(\"Authorization\", System.getenv(\"ECOMM_API_KEY\"))\n    .header(\"Content-Type\", \"application/json\")\n    .POST(HttpRequest.BodyPublishers.ofString(json))\n    .build();\n\nHttpResponse<String> response = client.send(request, BodyHandlers.ofString());\nSystem.out.println(response.body());\n","lang":"java"},"children":[]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response (202 Accepted):"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"status\": \"ACCEPTED\",\n  \"message\": \"Request accepted\",\n  \"requestId\": \"c3a1f8e2-4b6d-11ee-be56-0242ac120002\",\n  \"channel\": \"WHATSAPP\",\n  \"timestamp\": \"2026-01-15T10:30:00Z\"\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"channels","__idx":2},"children":["Channels"]},{"$$mdtype":"Tag","name":"Cards","attributes":{"columns":3,"cardMinWidth":240},"children":[{"$$mdtype":"Tag","name":"Card","attributes":{"title":"WhatsApp Cloud","icon":"./images/whatsapp.svg","iconRawContent":"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path fill=\"currentColor\" d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"/></svg>","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Meta's official Cloud API. Send pre-approved templates, session messages, and media with automatic SMS fallback and real-time delivery receipts."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/whatsapp-messaging"},"children":["Messaging Guide"]}]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"WhatsApp Lite","icon":"./images/whatsapp.svg","iconRawContent":"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path fill=\"currentColor\" d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"/></svg>","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Direct connection via QR code. No template restrictions — send any message at any time, manage groups, and sync contacts."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/omnichannel"},"children":["API Reference"]}]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"SMS","icon":"message","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Direct SMS with GSM 7-bit or Unicode encoding. Also works as automatic fallback when WhatsApp delivery fails."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/sms-messaging"},"children":["SMS Guide"]}]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Live Chat","icon":"headset","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Agent-based conversations with ticket management, team assignment, and full message history across WhatsApp, Web, and Facebook."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/live-chat"},"children":["Live Chat Guide"]}]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"platform-comparison","__idx":3},"children":["Platform comparison"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Feature"},"children":["Feature"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"WhatsApp Cloud"},"children":["WhatsApp Cloud"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"WhatsApp Lite"},"children":["WhatsApp Lite"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"SMS"},"children":["SMS"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Template messages"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Session (chat) messages"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes (24h window)"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes (unrestricted)"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["SMS fallback"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["QR code connection"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["No"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Group management"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["No"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Contact sync"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["No"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Direct messaging"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Typing indicators"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Delivery receipts"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]}]}]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"everything-you-need-to-build","__idx":4},"children":["Everything you need to build"]},{"$$mdtype":"Tag","name":"Cards","attributes":{"columns":3,"cardMinWidth":240},"children":[{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Template Messaging","icon":"file-lines","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Send pre-approved WhatsApp templates with dynamic variables, media headers, interactive buttons, and multi-card carousels."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Real-time Webhooks","icon":"bolt","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Get notified instantly when messages are delivered, read, or when customers reply. Five webhook types cover every event."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Conversations API","icon":"comments","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Persistent WhatsApp conversations that stay open for days or months — not limited to the standard 24-hour session window."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Analytics & Reports","icon":"chart-line","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Track delivery rates, message volumes, and conversation metrics. Export reports as XLSX or CSV."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Batch Messaging","icon":"layer-group","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Send messages at scale with configurable throttling, daily schedules, and full control to pause, resume, or cancel batches."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Contact & Ticket Management","icon":"address-book","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Manage customer records, support tickets with status workflows, and block/blacklist controls — all via API."]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"server-environments","__idx":5},"children":["Server environments"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Environment"},"children":["Environment"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Base URL"},"children":["Base URL"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Channel"},"children":["Channel"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Production"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["https://api.payless4messaging.com"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["WhatsApp Cloud"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Production"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["https://api.payless4messages.com"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["WhatsApp Lite"]}]}]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"explore-the-docs","__idx":6},"children":["Explore the docs"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Resource"},"children":["Resource"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/getting-started"},"children":["Getting Started"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Set up your account and send your first message"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/authentication"},"children":["Authentication"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["API key management, security, and best practices"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/whatsapp-messaging"},"children":["WhatsApp Messaging"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Templates, media, buttons, carousels, and SMS fallback"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/sms-messaging"},"children":["SMS Messaging"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Direct SMS, encoding, and character limits"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/webhooks"},"children":["Webhooks"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Real-time delivery receipts and incoming message notifications"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/conversations"},"children":["Conversations"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Long-lived WhatsApp conversations beyond 24 hours"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/live-chat"},"children":["Live Chat"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Agent chat, tickets, and team management"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/error-handling"},"children":["Error Handling"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Status codes, error format, and troubleshooting"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/rate-limits"},"children":["Rate Limits"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Throughput limits, pagination, and best practices"]}]}]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"need-help","__idx":7},"children":["Need help?"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Our team is here to help you integrate."]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Email"]}," — ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"mailto:support@ecommunicate.co.za"},"children":["support@ecommunicate.co.za"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Website"]}," — ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://www.ecommunicate.co.za/"},"children":["ecommunicate.co.za"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["API Status"]}," — Include the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["requestId"]}," from any error response when contacting support"]}]}]},"headings":[{"value":"eCommunicate Omnichannel API","id":"ecommunicate-omnichannel-api","depth":1},{"value":"Start building in minutes","id":"start-building-in-minutes","depth":2},{"value":"Channels","id":"channels","depth":2},{"value":"Platform comparison","id":"platform-comparison","depth":2},{"value":"Everything you need to build","id":"everything-you-need-to-build","depth":2},{"value":"Server environments","id":"server-environments","depth":2},{"value":"Explore the docs","id":"explore-the-docs","depth":2},{"value":"Need help?","id":"need-help","depth":2}],"frontmatter":{"title":"eCommunicate Omnichannel API","description":"Connect with customers across WhatsApp, SMS, and Live Chat through a single, powerful API.","seo":{"title":"eCommunicate Omnichannel API"}},"lastModified":"2026-07-16T12:13:05.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}