Set up your first integration and start sending automated communications in minutes.
Register at the partner portal with your company name and email. Your account will be activated immediately.
Navigate to API Keys and create a new key. Copy it immediately — it won't be shown again. Include the key in all API requests:
Authorization: Bearer ik_your_api_key_hereGo to Settings and set your webhook URL. This is where IntelliPortal will forward incoming messages from your clients.
Your webhook endpoint should:
Use the Send API to send your first message. Here's a quick example:
curl -X POST https://api.intelliportal.io/v1/messages \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "+1234567890",
"channel": "whatsapp",
"content": {
"body": "Hello from IntelliPortal!"
}
}'Use the embedded signup flow to onboard a WhatsApp Business Account. See the Embedded Signup docs for details.
Browse our comprehensive API reference to see all available endpoints and parameters.
View API ReferenceIntegrate faster with our ready-to-use client libraries for Node.js, Python, and Go.
Coming soon