ticket
- POSTGet next ticket id to work on
- POSTGet a list of tickets
- POSTCreate a ticket
- PATCHUpdate a few tickets at once
- GETGet a ticket
- PATCHUpdate a ticket
- GETGet ticket variables
- GETGet a tickets history
- POSTForward a ticket
- POSTAuto-execute a ticket
- GETPing a ticket
- GETGet ticket activity
- GETGet ticket stats
- GETGet agent queue status
export
customer
intent
aiAgent
- GETList of all available AI agents as an array
- GETList of all available AI agents as an tree based on associated tag
- POSTLoad enneo default AI Agents
- POSTCreate a new aiAgent
- GETGet an AI Agent by id
- DELDelete an existing AI Agent
- PATCHUpdate an existing AI Agent
- GETGet similar tickets for an AI Agent
- POSTPreview an AI Agent
- POSTGet the outcome of an AI Agent
aiQualityCheck
- GETGet all test runs with pagination
- POSTSchedule a new AI quality check
- GETGet a specific test run by ID
- DELDelete a specific test run by ID
- PATCHUpdate the expected result of a test ticket
- PATCHAccept the expected result of a test ticket
- POSTAccept ALL the expected results of for a test run
- GETGet all AI agents for which test runs can be triggereddeprecated
- GETGet all AI agents for which test runs can be triggered
- POSTAdd test cases for an AI agent
- DELDelete a test case by ID
- PATCHUpdate a test case by ID
intentTemplate
profile
team
reminder
settings
- GETGet settings of a client
- POSTUpdate multiple settings at once
- GETGet settings of a client and return the results in a compact form
- GETGet settings of a client in a grouped way for a category
- PUTUpdate setting
- GETSearch settings
- GETGet Subchannels
- POSTAdd a new Subchannel
- DELDelete a Subchannel
- GETGet User Defined Functions
- POSTAdd a new User Defined Function
- DELDelete a User Defined Function
- GETRedirect to Microsoft authorization page
- GETCallback for Microsoft authorization
tag
cron
version
knowledgeSourceStructure
knowledgeSource
telephony
cortex
Event
Search events with filtering and pagination
For technical personnel to search and analyze events across the system. Allows searching, filtering, and paginating through events independent of ticket ID. Technical information is always included in the results.
POST
/
event
/
search
curl --request POST \
--url https://demo.enneo.ai/api/mind/event/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'filters=[{"key":"e.status","comparator":"in","values":["open","closed"]},{"key":"e.createdAt","comparator":"between","from":"2023-01-01","to":"2023-12-31"},{"key":"q","comparator":"equal","value":"abc"}]'
{
"events": [
{
"id": 123,
"type": "AutoProcessEmail",
"status": "closed",
"createdAt": "2023-05-15T10:30:00Z",
"processedAt": "2023-05-15T10:31:00Z",
"duration": 60000,
"ticketId": 456,
"contractId": "CONTR123",
"successLabel": "Success",
"outcome": "Email was processed successfully",
"details": [
{
"label": "Email Subject",
"value": "Support Request"
}
],
"showToUser": true
}
],
"pagination": {
"total": 150,
"offset": 0,
"limit": 20
}
}
Authorizations
JWT-based authentication
Query Parameters
Pagination offset
Number of items to return (max 100)
Required range:
x <= 100
Field to sort by (only indexed fields are supported)
Available options:
e.id
, e.contractId
, e.ticketId
, e.status
, e.createdAt
Sort direction
Available options:
asc
, desc
Body
application/x-www-form-urlencoded
Response
200
application/json
Successful operation
The response is of type object
.
curl --request POST \
--url https://demo.enneo.ai/api/mind/event/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'filters=[{"key":"e.status","comparator":"in","values":["open","closed"]},{"key":"e.createdAt","comparator":"between","from":"2023-01-01","to":"2023-12-31"},{"key":"q","comparator":"equal","value":"abc"}]'
{
"events": [
{
"id": 123,
"type": "AutoProcessEmail",
"status": "closed",
"createdAt": "2023-05-15T10:30:00Z",
"processedAt": "2023-05-15T10:31:00Z",
"duration": 60000,
"ticketId": 456,
"contractId": "CONTR123",
"successLabel": "Success",
"outcome": "Email was processed successfully",
"details": [
{
"label": "Email Subject",
"value": "Support Request"
}
],
"showToUser": true
}
],
"pagination": {
"total": 150,
"offset": 0,
"limit": 20
}
}
Assistent
Responses are generated using AI and may contain mistakes.