curl --request GET \
--url https://demo.enneo.ai/api/mind/ticket/{ticketId}/ping \
--header 'Authorization: Bearer <token>'{
"success": true,
"workedOnBy": [
{
"id": 1,
"firstName": "Max",
"lastName": "Mustermann",
"email": "demo@enneo.dev",
"phone": "+49 123 456789",
"lastSeen": "2022-08-12 12:21:21",
"type": "enneo",
"isSsoOnly": 0,
"lang": "de",
"nameAlias": "Johnny",
"externalId": "EMP-12345"
}
]
}Ping a ticket to keep time tracking for agent and to refresh the list of
currently-active agents on this ticket. The FE polls this every 30s and
uses workedOnBy to overwrite its cached list, so the “another agent
is working on this ticket” warning becomes two-sided (both the first and
the second agent see it).
curl --request GET \
--url https://demo.enneo.ai/api/mind/ticket/{ticketId}/ping \
--header 'Authorization: Bearer <token>'{
"success": true,
"workedOnBy": [
{
"id": 1,
"firstName": "Max",
"lastName": "Mustermann",
"email": "demo@enneo.dev",
"phone": "+49 123 456789",
"lastSeen": "2022-08-12 12:21:21",
"type": "enneo",
"isSsoOnly": 0,
"lang": "de",
"nameAlias": "Johnny",
"externalId": "EMP-12345"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.enneo.ai/llms.txt
Use this file to discover all available pages before exploring further.
JWT-based authentication
The id of the ticket
376189
Successful operation
Operation was successful
true
Agents currently working on this ticket (live — only entries with
ttl > NOW() in ticket_agent). Includes the pinging user. Same
shape as Ticket.workedOnBy in GET /ticket/{id} — FE overwrites
its cached list with this array.
Show child attributes