GET
/
team
/
list
curl --request GET \
  --url https://demo.enneo.ai/api/mind/team/list
[
  {
    "id": 1,
    "name": "Admins",
    "parent": 0,
    "description": "Handles administrative tasks",
    "membersCount": 5,
    "settings": {
      "roleId": 1,
      "skills": {
        "tagIds": {},
        "channels": {}
      },
      "supersetRole": "analyticsEditor",
      "inheritParentalSettings": false
    }
  },
  {
    "id": 2,
    "name": "C-KD NEU",
    "parent": 0,
    "description": null,
    "membersCount": 1,
    "settings": {
      "roleId": 2,
      "skills": {
        "tagIds": [
          2
        ],
        "channels": [
          "email",
          "phone",
          "system",
          "chat"
        ]
      },
      "supersetRole": "analyticsAgent",
      "inheritParentalSettings": false
    }
  }
]

Authorizations

connect.sid
string
cookie
required

Cookie-based authentication

Query Parameters

roleId
integer

Filter teams by role ID

q
string

Search query to filter teams by name

ids
integer[]

Array of team IDs to filter by

Response

200
application/json
Successful operation
id
integer

The unique identifier of the team

name
string

The name of the team

parent
integer

The parent id of the team

description
string | null

The description of the team

membersCount
integer

Number of users assigned to this team

settings
object