curl --request POST \
--url https://demo.enneo.ai/api/mind/team/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"name": "Support",
"parent": 0,
"description": "Allgemeine Fragen",
"settings": {
"roleId": 1,
"skills": {
"tagIds": [
1,
2
],
"channels": [
"email",
"chat"
]
},
"supersetRole": "analyticsReadAll",
"inheritParentalSettings": true
}
}
'{
"success": true
}JWT-based authentication
The unique identifier of the team
1
The name of the team
"Support"
The parent id of the team
0
The description of the team
"Allgemeine Fragen"
Show child attributes
Created
Data format of Enneo success messages
Operation was successful
true
curl --request POST \
--url https://demo.enneo.ai/api/mind/team/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"name": "Support",
"parent": 0,
"description": "Allgemeine Fragen",
"settings": {
"roleId": 1,
"skills": {
"tagIds": [
1,
2
],
"channels": [
"email",
"chat"
]
},
"supersetRole": "analyticsReadAll",
"inheritParentalSettings": true
}
}
'{
"success": true
}