You can use the Wazzup iframe to work with several service tools:
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
POST /v2/iframe-links/channelsRequest 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.
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.
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.