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/Embedded Signup

Embedded Signup

Let your clients connect their WhatsApp Business Account through a Meta-powered popup — no redirect, no friction.

Overview

The embedded signup flow lets your clients connect their WhatsApp Business Account through a Meta-powered popup. After they complete the flow, IntelliPortal links their account to your partner integration.

Client Signup API

HTTP
POST https://api.intelliportal.io/v1/clients/signup
Authorization: Bearer <api_key>
Content-Type: application/json

{
  "auth_code": "code_from_meta_popup",
  "redirect_uri": "https://your-app.com/callback",
  "client_ref": "your-internal-client-id"
}

The auth_code comes from the Meta embedded signup popup. The client_ref is your own reference ID for this client.

Response

JSON
{
  "success": true,
  "client": {
    "client_ref": "your-internal-client-id",
    "waba_id": "123456789",
    "phone_number_id": "987654321",
    "phone_number": "+1234567890",
    "business_name": "Client Business"
  }
}