---
title: "Get Team Members"
method: GET
path: "/teams/{team_id}/members"
tags: ["teams"]
---

# Get Team Members

`GET /teams/{team_id}/members`

## Path parameters

- `team_id` string, uuid, required

## Response `200`

Successful Response

- TeamMemberListResponse
  - `results` union[], required
    - union
      - TeamMemberResponse
        - `id` string, uuid, required
        - `team_id` string, uuid, required
        - `user_id` string, uuid, required
        - `user_data` UserResponse, required
          - `id` string, uuid, required
          - `email` string, required
          - `first_name` string
          - `last_name` string
          - `image` string
          - `last_login` string, date-time
        - `team_role_id` string, uuid, required
        - `team_role` TeamRole, required
          - `id` string, uuid
          - `date_created` string, date-time
          - `date_updated` string, date-time
          - `team_id` string, uuid — The ID of the team associated with the role.
          - `name` string, required — The name of the role.
          - `view_chatbots` boolean — Flag indicating whether the user can view the chatbots.
          - `edit_chatbots` boolean — Flag indicating whether the user can edit the chatbots.
          - `create_chatbot` boolean — Flag indicating whether the user can create a new chatbot.
          - `edit_customization` boolean — Flag indicating whether the user can edit the customization of a chatbot.
          - `share_chatbots` boolean — Flag indicating whether the user can share the chatbot.
          - `edit_safety` boolean — Flag indicating whether the user can edit the safety settings of a chatbot.
          - `view_chat_logs` boolean — Flag indicating whether the user can view the chat logs.
          - `edit_api_key` boolean — Flag indicating whether the user can edit the API key.
          - `edit_whatsapp_integration` boolean — Flag indicating whether the user can edit the WhatsApp integration.
          - `edit_intercom_integration` boolean — Flag indicating whether the user can edit the Intercom integration.
          - `analytics` boolean — Flag indicating whether the user can view the analytics.
          - `live_agents` boolean — Flag indicating whether the user can view the live agents screen.
          - `assign_avatar` boolean — Flag indicating whether the user can assign an avatar to a chatbot.
          - `create_avatar` boolean — Flag indicating whether the user can create an avatar.
          - `edit_avatar` boolean — Flag indicating whether the user can edit an avatar.
        - `all_knowledge_bases` boolean, required
        - `allowed_kbs` KnowledgeBase[], required
          - `id` string, uuid
          - `date_created` string, date-time
          - `date_updated` string, date-time
          - `knowledge_base_name` string, required — The name of the knowledge base.
          - `indexed` object — Additional fields used for indexing the knowledge base.
          - `user_id` string, uuid, required — The ID of the user associated with the knowledge base.
          - `created_by` string, uuid — The ID of the user who created the knowledge base when within a team.
          - `team_id` string, uuid — The ID of the team associated with the knowledge base.
          - `type` string — The type of the knowledge base.
          - `num_chars` integer — Number of characters of all files in this knowledge base.
          - `vectordb_indexed` boolean — Indicator whether the data is stored in vector db or not.
          - `is_currently_training` boolean — Indicator whether the knowledge base is being trained at the moment.
          - `last_model_used` 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-4-omnimodel-mini' | 'gpt-4-omnimodel' | 'gpt-4-omnimodel-128k' | 'gpt-4-turbo' | 'gpt-4-turbo-128k' | 'gpt-4' | 'gpt-4-32k' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-1106' | 'gpt-3.5-turbo-16k' | 'falcon' | 'mistral' | 'wizardlm' | 'gemma' | 'llama2' | 'llama3' | 'llama3_8b' | 'cohere' | 'claude_3_opus_9k' | 'claude_3_opus_32k' | 'claude_3_opus_128k' | 'claude_3_opus_200k' | 'claude_3_sonnet' | 'claude_3_dot_5_sonnet' | 'claude_3_haiku' | 'claude_3_dot_7_sonnet' | 'claude_4_opus' | 'claude_4_sonnet' | 'gemini-2.0-flash' | 'gemini-2.5-flash' | 'gemini-2.0-flash-lite' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'claude_4_dot_5_sonnet' | 'claude_4_dot_1_opus' | 'claude_4_dot_5_haiku' | 'gemini-2.5-pro' | 'gemini-2.5-flash-lite' | 'gpt-5.1' | 'gemini-3-pro' | 'gpt-5.2' | 'gpt-5.4' | 'gemini-3-flash' | 'claude_4_dot_6_opus' | 'claude_4_6_sonnet' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'gpt-5.5' | 'gpt-5.6-sol' | 'gpt-5.6-terra' | 'gpt-5.6-luna' | 'claude_4_7_opus' | 'claude_4_8_opus' | 'claude_5_opus' | 'claude_5_sonnet' — An enumeration.
          - `new_design_activated` boolean — Flag indicating whether the new design is activated.
        - `credits` number, required
        - `credits_available` integer, required
        - `total_credits_used` number, required
        - `accepted` boolean, required
      - TeamMemberSimpleResponse
        - `id` string, uuid, required
        - `team_id` string, uuid, required
        - `user_id` string, uuid, required
        - `user_data` UserResponse, required
          - `id` string, uuid, required
          - `email` string, required
          - `first_name` string
          - `last_name` string
          - `image` string
          - `last_login` string, date-time
        - `team_role_id` string, uuid, required
        - `team_role` TeamRoleSimpleResponse, required
          - `id` string, uuid, required
          - `name` string, required
  - `nr_seats_from_tier` integer
  - `nr_seats_from_addons` integer

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/dante-ai/apis/dante-ai-api.md) · [All operations](https://skmtc.net/dante-ai/apis/dante-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dante-ai/dante-ai-api/versions/38b6c9a4246d/schema)
