GET
/
team
/
{id}
Get team by id
curl --request GET \
  --url https://demo.enneo.ai/api/mind/team/{id}
{
  "id": 1,
  "name": "Support",
  "parent": 0,
  "description": "Allgemeine Fragen",
  "settings": {
    "roleId": 1,
    "skills": {
      "tagIds": [
        1,
        2
      ],
      "channels": [
        "email",
        "chat"
      ]
    },
    "supersetRole": "analyticsReadAll",
    "inheritParentalSettings": true
  }
}

Authorizations

connect.sid
string
cookie
required

Cookie-based authentication

Path Parameters

id
integer
required

Query Parameters

forceInheritance
boolean

If true, the team will inherit the permissions of its parent team

Response

Successful operation

id
integer

The unique identifier of the team

Example:

1

name
string

The name of the team

Example:

"Support"

parent
integer

The parent id of the team

Example:

0

description
string | null

The description of the team

Example:

"Allgemeine Fragen"

settings
object