This API creates a new AI Agent and returns the newly created id
curl --request POST \
--url https://demo.enneo.ai/api/mind/aiAgent \
--header 'Content-Type: application/json' \
--data '{
"id": 1,
"tagId": 41,
"channels": [
"all"
],
"name": "Change bank data (Code)",
"description": "Customer wants to change his bank data",
"appearance": {},
"exampleTicketIds": [
8,
26
],
"settings": {}
}'
{
"success": true
}
Cookie-based authentication
The new AI Agent that should be created. If not defined, then a blank "new ai agent" will be created
The body is of type object
.
New intent created
Data format of Enneo success messages
curl --request POST \
--url https://demo.enneo.ai/api/mind/aiAgent \
--header 'Content-Type: application/json' \
--data '{
"id": 1,
"tagId": 41,
"channels": [
"all"
],
"name": "Change bank data (Code)",
"description": "Customer wants to change his bank data",
"appearance": {},
"exampleTicketIds": [
8,
26
],
"settings": {}
}'
{
"success": true
}