/api/v1/whatsappList sessions
List all WhatsApp sessions for your tenant.
URL: https://api.actiwapi.com/api/v1/whatsapp
Auth: JWT Bearer
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {accessToken} | Yes |
| Content-Type | application/json | Yes* |
Query parameters
page— Page number (default 1)limit— Items per page (default 20)
Code examples
curl -X GET "https://api.actiwapi.com/api/v1/whatsapp" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {accessToken}"Response example200
{
"success": true,
"data": [
{
"id": "uuid",
"name": "Sales Line 1",
"status": "connected",
"phoneNumber": "919876543210",
"connected": true
}
],
"pagination": { "page": 1, "limit": 20, "total": 1, "totalPages": 1 }
}