Let your clients connect their WhatsApp Business Account through a Meta-powered popup — no redirect, no friction.
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.
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.
{
"success": true,
"client": {
"client_ref": "your-internal-client-id",
"waba_id": "123456789",
"phone_number_id": "987654321",
"phone_number": "+1234567890",
"business_name": "Client Business"
}
}