Focus Beeper Desktop app
$client->focus(?string chatID, ?string draftAttachmentPath, ?string draftText, ?string messageID): BeeperDesktopClientServiceFocusResponse
POST/v1/focus
Focus Beeper Desktop and optionally open a specific chat, jump to a message, or pre-fill text and an image.
Focus Beeper Desktop app
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(accessToken: 'My Access Token');
$response = $client->focus(
chatID: '!NCdzlIaMjZUmvmvyHU:beeper.com',
draftAttachmentPath: 'draftAttachmentPath',
draftText: 'draftText',
messageID: 'messageID',
);
var_dump($response);{
"success": true
}Returns Examples
{
"success": true
}