Nurama Developers

get_addable_chat_members

List users who can be invited to a member chat — already filtered by chat scope (workspace / project / social) and excluding current members.

Read-only tool.

List users who can be invited to a member chat — already filtered by chat scope (workspace / project / social) and excluding current members. Use BEFORE add_chat_members so you only pass valid invitee UUIDs and skip a server-side 403.

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