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

Autorisierungen

Authorization
string
header
erforderlich

JWT-based authentication

Pfadparameter

id
integer
erforderlich

Abfrageparameter

forceInheritance
boolean

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

Antwort

Successful operation

id
integer

The unique identifier of the team

Beispiel:

1

name
string

The name of the team

Beispiel:

"Support"

parent
integer

The parent id of the team

Beispiel:

0

description
string | null

The description of the team

Beispiel:

"Allgemeine Fragen"

settings
object