Retrieve a quality assessment in full or summary format. User must have permission to view this assessment.
curl --request GET \
--url https://demo.enneo.ai/api/mind/quality/assessment/{id} \
--header 'Authorization: Bearer <token>'{
"id": 901,
"scorecardId": 42,
"scorecardBaseId": 17,
"state": "reviewedBySupervisor",
"assessedUser": 23,
"assessedByUser": 12,
"ticketId": 8821,
"worklogId": 551,
"createdAt": "2024-06-12T10:20:00Z",
"modifiedAt": "2024-06-12T11:05:00Z",
"deletedAt": null,
"canEdit": true,
"data": {
"aiSummary": "AI summary of the conversation...",
"categories": [
{
"categoryId": 1,
"criteria": [
{
"id": 10,
"score": 4,
"reason": "Greeting was warm.",
"state": "humanVerified",
"lastEditedByUserId": 12,
"lastEditedAt": "2024-06-12T10:55:00Z"
}
]
},
{
"categoryId": 2,
"criteria": [
{
"id": 22,
"score": 3,
"reason": "Needs to confirm resolution steps.",
"state": "humanVerified",
"lastEditedByUserId": 12,
"lastEditedAt": "2024-06-12T10:57:00Z"
}
]
}
],
"totals": {
"scoredPoints": 18,
"usedMaxPoints": 20,
"totalMaxPoints": 25,
"percentage": 72
},
"supervisorAssessment": "Great rapport, focus on closing next time.",
"assessmentDate": "2024-06-12T11:00:00Z",
"discussionDate": null
},
"editingHistory": [
{
"userId": 12,
"timestamp": "2024-06-12T10:55:00Z",
"field": "criteria.1.10.score",
"oldValue": 3,
"newValue": 4
}
],
"worklog": {
"userId": 23,
"worklogId": 551,
"lastInteraction": "2024-06-12T09:59:00Z",
"ticketId": 8821,
"conversationId": 331,
"action": "reply",
"actionList": [
"reply",
"internal-note"
]
},
"aiUsage": {
"automationLevel": 2,
"automationLevelLabel": "Assisted",
"aiAgents": []
},
"time": {
"duration": 480,
"durationAfterWork": 120,
"segments": []
},
"customerExperience": {
"slaMet": true,
"netSecondsClosedAfterSla": -30,
"closingDateForSLA": "2024-06-12T09:40:00Z",
"dueDateForSLA": "2024-06-12T10:00:00Z",
"reOpened": false,
"csat": null
}
}JWT-based authentication
Assessment ID
Response format. Use summary to receive the lightweight representation (same as in list/ticket endpoints). Defaults to full.
full, summary "summary"
Successful operation
Quality assessment of agent performance on a specific work session
Assessment ID
1
ID of the scorecard used
1
Base ID of the scorecard used
1
Assessment workflow state
unprocessed, aiInProgress, aiReady, reviewOngoing, reviewedBySupervisor, discussedWithAssessee, error, deleted "aiReady"
ID of the assessed user (agent)
42
ID of the supervisor who assessed
Related ticket ID
12345
Related worklog ID
AI-generated summary (summary format)
"Good job overall, scored 85%"
Full assessment data (full format only)
Anzeigen untergeordnete attribute
Work session metadata
AI automation metrics
Time tracking information
Customer satisfaction metrics
Scored categories and criteria
Whether current user can edit this assessment
curl --request GET \
--url https://demo.enneo.ai/api/mind/quality/assessment/{id} \
--header 'Authorization: Bearer <token>'{
"id": 901,
"scorecardId": 42,
"scorecardBaseId": 17,
"state": "reviewedBySupervisor",
"assessedUser": 23,
"assessedByUser": 12,
"ticketId": 8821,
"worklogId": 551,
"createdAt": "2024-06-12T10:20:00Z",
"modifiedAt": "2024-06-12T11:05:00Z",
"deletedAt": null,
"canEdit": true,
"data": {
"aiSummary": "AI summary of the conversation...",
"categories": [
{
"categoryId": 1,
"criteria": [
{
"id": 10,
"score": 4,
"reason": "Greeting was warm.",
"state": "humanVerified",
"lastEditedByUserId": 12,
"lastEditedAt": "2024-06-12T10:55:00Z"
}
]
},
{
"categoryId": 2,
"criteria": [
{
"id": 22,
"score": 3,
"reason": "Needs to confirm resolution steps.",
"state": "humanVerified",
"lastEditedByUserId": 12,
"lastEditedAt": "2024-06-12T10:57:00Z"
}
]
}
],
"totals": {
"scoredPoints": 18,
"usedMaxPoints": 20,
"totalMaxPoints": 25,
"percentage": 72
},
"supervisorAssessment": "Great rapport, focus on closing next time.",
"assessmentDate": "2024-06-12T11:00:00Z",
"discussionDate": null
},
"editingHistory": [
{
"userId": 12,
"timestamp": "2024-06-12T10:55:00Z",
"field": "criteria.1.10.score",
"oldValue": 3,
"newValue": 4
}
],
"worklog": {
"userId": 23,
"worklogId": 551,
"lastInteraction": "2024-06-12T09:59:00Z",
"ticketId": 8821,
"conversationId": 331,
"action": "reply",
"actionList": [
"reply",
"internal-note"
]
},
"aiUsage": {
"automationLevel": 2,
"automationLevelLabel": "Assisted",
"aiAgents": []
},
"time": {
"duration": 480,
"durationAfterWork": 120,
"segments": []
},
"customerExperience": {
"slaMet": true,
"netSecondsClosedAfterSla": -30,
"closingDateForSLA": "2024-06-12T09:40:00Z",
"dueDateForSLA": "2024-06-12T10:00:00Z",
"reOpened": false,
"csat": null
}
}