IntelliPortal

Introduction

  • Overview
  • Getting Started

Platform

  • Send API
  • Webhooks
  • Authentication

Guides

  • Embedded Signup
  • WhatsApp Limits
  • Error Codes

Resources

  • OpenAPI Spec
  • Postman Collection
GuidesAPI ReferenceChangelog
⌘K

© 2026 IntelliPortal Inc. All rights reserved.

Privacy PolicyStatusContact Support

On This Page

  • Introduction
  • Quick Start
  • Next Steps
  • Prerequisites

Need help?

Can't find what you're looking for? Our engineers are here to help.

Chat with support
Docs/Getting Started

Getting Started

Set up your first integration and start sending automated communications in minutes.

1. Create a Partner Account

Register at the partner portal with your company name and email. Your account will be activated immediately.

2. Generate an API Key

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:

HTTP Header
Authorization: Bearer ik_your_api_key_here

3. Configure Your Webhook URL

Go to Settings and set your webhook URL. This is where IntelliPortal will forward incoming messages from your clients.

Your webhook endpoint should:

  • Accept POST requests with JSON body
  • Return a 200 status within 5 seconds
  • Verify the HMAC signature using your webhook secret

4. Send Your First Message

Use the Send API to send your first message. Here's a quick example:

cURL
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!"
    }
  }'

5. Onboard Your First Client

Use the embedded signup flow to onboard a WhatsApp Business Account. See the Embedded Signup docs for details.

Explore the API

Browse our comprehensive API reference to see all available endpoints and parameters.

View API Reference
Coming Q2 2026

Official SDKs

Integrate faster with our ready-to-use client libraries for Node.js, Python, and Go.

Coming soon