Nurama Developers

get_member_chat

Fetch a single member chat (DM / group chat) by id.

Read-only tool.

Fetch a single member chat (DM / group chat) by id. Returns subject, color, scope, members, archived state. Use to verify a member chat exists and the caller participates in it before posting via send_message.

Input

PropertyTypeRequiredDescription
chatIdstringyesUUID of the member chat.

JSON Schema

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

On this page