Skip to content

Profile Data DTO Reference

The NjoguAmos\Waha\Dto\ProfileData represents your WhatsApp profile information.

php
use NjoguAmos\Waha\Facades\Profile;
use NjoguAmos\Waha\Dto\ProfileData;

$response = Profile::get(session: 'default');
/** @var ProfileData $profile */
$profile = $response->dtoOrFail();

idstring

The WhatsApp ID of the profile.

php
$profile->id; // "[email protected]"

namestring

The profile display name.

php
$profile->name; // "My Name"

picturestring|null

The profile picture URL. null if no picture is set.

php
$profile->picture; // "https://pps.whatsapp.net/v/t/123.jpg?other-params" or null

Released under the MIT License.