Focus Beeper Desktop and optionally navigate to a specific chat, message, or pre-fill draft text and attachment.
Focus Beeper Desktop app
import os
from beeper_desktop_api import BeeperDesktop
client = BeeperDesktop(
access_token=os.environ.get("BEEPER_ACCESS_TOKEN"), # This is the default and can be omitted
)
response = client.focus()
print(response.success){
"success": true
}Returns Examples
{
"success": true
}