List Apps
GET /api/apps
List all apps associated with a specific session.
Usage
php
use NjoguAmos\Waha\Facades\App;
$response = App::all(session: 'default');Response
The response is a Saloon\Http\Response containing a list of app configurations.
json
[
{
"id": "app_123",
"session": "default",
"app": "chatwoot",
"enabled": true,
"config": {
"url": "https://chatwoot.example.com",
"accountId": 1,
"accountToken": "token",
"inboxId": 1,
"inboxIdentifier": "identifier",
"locale": "en-US"
}
}
]