Nurama Developers

get_chat

Fetch the metadata for a single chat: chatType (`topic` / `member` / `submission`), topicType (`project` / `asset` / `task` / etc.), topicId, visibility, and participant ids.

Read-only tool.

Fetch the metadata for a single chat: chatType (topic / member / submission), topicType (project / asset / task / etc.), topicId, visibility, and participant ids. Use this when you have a chatId and need to know what the chat is about before reading messages or replying.

Input

PropertyTypeRequiredDescription
chatIdstringyesUUID of the chat.

JSON Schema

{
  "type": "object",
  "properties": {
    "chatId": {
      "type": "string",
      "description": "UUID of the chat."
    }
  },
  "required": [
    "chatId"
  ],
  "additionalProperties": false
}

On this page