Skip to main content
POST
/
v1
/
admin
/
chats
/
{chat_id}
/
start
curl -X POST https://portal-api.7331.org/v1/admin/chats/1/start \
  -b "psession=YOUR_SESSION"
{
  "message": "Chat 'General' started"
}

Documentation Index

Fetch the complete documentation index at: https://docs.7331.org/llms.txt

Use this file to discover all available pages before exploring further.

Requires Admin or higher permission level. Hierarchy is enforced against the chat owner.
Starts the neko virtual browser VM for a chat. The chat must exist in live Redis state (i.e. have been created and not yet destroyed). Broadcasts room:started to all clients currently in the chat. Note: Existing chat viewers receive room:started but credentials are not pushed automatically — they are delivered on the next room:join.

Path Parameters

chat_id
integer
required
Chat ID.

Response

message
string
required
Confirmation message.
curl -X POST https://portal-api.7331.org/v1/admin/chats/1/start \
  -b "psession=YOUR_SESSION"
{
  "message": "Chat 'General' started"
}
{
  "detail": "Chat is already running"
}