Skip to content

Set Profile Name

Set your WhatsApp profile name.

Usage

php
use NjoguAmos\Waha\Facades\Profile;

/** @var \Saloon\Http\Response $response */
$response = Profile::setName(name: 'My New Name');
php
use NjoguAmos\Waha\Facades\Profile;

/** @var \Saloon\Http\Response $response */
$response = Profile::setName(name: 'My New Name', session: 'my-session');

Parameters

ParameterTypeRequiredDescription
namestringYesThe new profile name
sessionstringNoSession name (defaults to waha.session config)

Response

The response returned by the setName method is an instance of Saloon\Http\Response:

php
/** @var \Saloon\Http\Response $response */

$response->status(); // 200
$response->json();   // ["success" => true]

Engines

WEBJSWPPNOWEBGOWS

References

Released under the MIT License.