/connectionsScope: readOfficial + BasicList WhatsApp connections and capabilities.
Returns connection_id for automation without exposing tokens or provider credentials. capabilities is the source of truth: Official (Meta) exposes every type and action; the Basic plan connection exposes provider "freemium" with only text and send.
Path parameters
No additional parameters.
Query parameters
No additional parameters.
Body fields
This endpoint does not receive a JSON body.
Ready examples
curl -X GET "https://connect.zyronstack.com/api/v1/connections" \
-H "Authorization: Bearer SUA_CHAVE_API"Responses
| 200 | Connections returned. |
Response example
{
"data": [{
"id": "<CONNECTION_ID>",
"type": "official",
"status": "connected",
"phone_number": "556292498338",
"capabilities": {
"provider": "meta_cloud_api",
"message_types": ["text", "template", "image", "video", "audio", "document", "sticker", "location", "contacts", "interactive", "reaction"],
"actions": ["send", "mark_read", "media_upload", "media_get", "media_download", "media_delete"]
}
}, {
"id": "9c1d2e3f-4a5b-4c6d-8e7f-0a1b2c3d4e5f",
"type": "freemium",
"status": "connected",
"phone_number": "5511988887777",
"capabilities": {
"provider": "freemium",
"message_types": ["text"],
"actions": ["send"]
}
}]
}