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.
Path Parameters
Body Parameters
All fields are optional — only provided fields are updated.
New chat display name (2–64 characters)
Chat visibility: "official", "public", or "private".
Platform endorsement label. Send null to clear.
Chat description (max 500 characters)
Vanity slug. Send null to clear (chat reverts to private unless visibility is also set).
Neko container configuration (browser, start_url, kiosk)
Response
Returns the updated chat object (GroupChatPublicResponse).
Whether visible to everyone.
Chat visibility: "official", "public", or "private".
Platform endorsement label.
Chat description (nullable)
ISO 8601 creation timestamp
ISO 8601 last-updated timestamp
curl -X POST https://portal-api.7331.org/v1/admin/chats/1/update \
-H "Content-Type: application/json" \
-b "psession=YOUR_SESSION" \
-d '{"visibility": "official", "description": "Main lobby chat"}'
{
"id": 1,
"name": "main-lobby",
"owner_id": 1,
"is_public": true,
"visibility": "official",
"label": null,
"slug": "main-lobby",
"description": "Main lobby chat",
"avatar_source": null,
"last_activity_at": "2026-03-14T12:00:00Z",
"created_at": "2026-03-01T00:00:00Z",
"updated_at": "2026-03-15T08:30:00Z"
}