Arrow
Get started with Wazzup
Arrow
How to connect a messenger
Arrow
How to use Wazzup chats
Arrow
How to pay for the service
Arrow
Bitrix24
Arrow
Kommo
Arrow
Zoho CRM
Arrow
HubSpot
Arrow
Pipedrive
Arrow
Other CRMs
Arrow
How to sell even easier
Arrow
All about WABA
Arrow
For partners
Arrow
Public API
For partners
Arrow

iframe for Managing Channels and Templates

You can use the Wazzup iframe to work with several service tools:

  • Connecting or authorizing WABA, WhatsApp, Telegram, VKontakte channels
  • Managing WABA and Wazzup templates
  • Editing your WABA profile

When using the methods listed below, include the end‑customer's client_access_token (obtained via simplified authorization or OAuth) in the request header: Authorization: Bearer client_access_token

Connecting or Authorizing Channels via iframe

Method POST /v2/iframe-links/channels

Request parameters

Body parameter. Required marked with * Type Description
options* object Specifies the type of iframe you need
channel_id string Channel ID. Include this if you're reconnecting a channel (e.g., when its status is "Unauthorized")
transport* string Transport type: whatsapp, wapi, tgapi, maxbot, max, vk

Request example

curl -L 'https://tech.wazzup24.com/v2/iframe-links/channels' \
-H 'Authorization: Bearer <client_access_token>' \
-d '{
"options": {
"channel_id": "7f19dec-8b4-4d55-8a58-ee7107b493",
"transport": "whatsapp"
}
}'

Response example

{
"data": {
"link": "https://app.wazzup24.com/1234-1234/tech-partner/channels?token=token"
},
"meta": {
"timestamp": 1763030674
}
}

Result: A URL to the requested iframe.

Managing Templates

Method POST /v2/iframe-links/templates
Body parameter. Required marked with * Type Description
options* object Specifies the type of iframe you need
template_type* string Template type for the iframe: wazzup, waba

Request example

curl -L 'https://tech.wazzup24.com/v2/iframe-links/templates' \
-H 'Authorization: Bearer <client_access_token>' \
-d '{
"options": {
"template_type": "waba"
}
}'

Response example

{
"data": {
"link": "https://app.wazzup24.com/1234-1234/tech-partner/templates-waba?token=token"
},
"meta": {
"timestamp": 1763030674
}
}

Result: A URL to the requested iframe.

Editing Your WABA profile

Method POST /v2/iframe-links/waba-profile
Body parameter. Required marked with * Type Description
options* object Specifies the type of iframe you need
channel_id string WABA channel ID

Request example

curl -L 'https://tech.wazzup24.com/v2/iframe-links/waba-profile' \
-H 'Authorization: Bearer <client_access_token>' \
-d '{
"options": {
"channel_id": "7f19dec-8b4-4d55-8a58-ee7107b493"
}
}'

Response example

{
"data": {
"link": "https://app.wazzup24.com/1234-1234/tech-partner/waba-profile?token=token"
},
"meta": {
"timestamp": 1763030674
}
}

Result: A URL to the requested iframe.