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
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | The new profile name |
session | string | No | Session 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
| WEBJS | WPP | NOWEB | GOWS |
|---|---|---|---|
| ✅ | ✅ | ✅ | ✅ |