Get All Presence
Get all presence information available for a session. Returns both groups' and personal chats' presence information.
Usage
php
use NjoguAmos\Waha\Facades\Presence;
/** @var \Saloon\Http\Response $response */
$response = Presence::all();php
use NjoguAmos\Waha\Facades\Presence;
/** @var \Saloon\Http\Response $response */
$response = Presence::all(session: 'my-session');Response
The response returned by the all method is an instance of Saloon\Http\Response. You may use the json method to retrieve the response as an array or the dtoOrFail method to retrieve a list of ChatPresenceData DTOs:
php
/** @var \Saloon\Http\Response $response */
$response->status(); // 200
$response->json(); // [["id" => "...", "presences" => [...]], ...]php
use NjoguAmos\Waha\Facades\Presence;
use NjoguAmos\Waha\Dto\ChatPresenceData;
/** @var list<ChatPresenceData> $presences */
$presences = Presence::all()->dtoOrFail();
foreach ($presences as $chatPresence) {
$chatPresence->id; // "[email protected]" or "[email protected]"
$chatPresence->presences[0]->lastKnownPresence; // "offline", "online", etc.
$chatPresence->presences[0]->lastSeen; // unix timestamp or null
}Engines
| WEBJS | WPP | NOWEB | GOWS |
|---|---|---|---|
| ❌ | ✅ | ✅ | ✅ |