List Evaluations
curl --request GET \
--url https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluationsimport requests
url = "https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"totalElements": 123,
"totalPages": 123,
"first": true,
"last": true,
"size": 123,
"content": [
{
"id": 123,
"eventId": 123,
"userId": 123,
"eventPersonnelId": 123,
"status": "PENDING",
"evaluationTemplate": {
"id": 123,
"name": "<string>",
"color": "<string>",
"sandboxMode": true,
"sandboxExpiresAt": "2023-11-07T05:31:56Z",
"active": true,
"templateIdentifier": "<string>",
"version": 123,
"isPdfTemplate": true
},
"results": [
{
"id": 123,
"eventId": 123,
"userId": 123,
"evaluationTemplateCriteria": {
"id": 123,
"description": "<string>",
"orderIndex": 123,
"score": 123,
"scoringCriteriaCriticalityLevelId": 123,
"skillArea": {
"id": 123,
"refId": "<string>",
"name": "<string>",
"description": "<string>"
},
"parentCriteriaId": 123,
"type": "<string>",
"taskId": "<string>",
"smartTask": {
"id": 123,
"prompt": "<string>",
"contextSources": [
"<string>"
],
"additionalInstructions": "<string>",
"overrideGeneratedInstructions": "<string>",
"type": "<string>"
}
},
"score": 123,
"totalPossibleScore": 123,
"manualInputValue": 123,
"isPassing": true,
"classification": "STRENGTH",
"comment": "<string>",
"speedSeconds": 123,
"explanation": "<string>",
"qaResponse": {
"smartTaskId": 123,
"standardCriteriaId": "<string>",
"passing": true,
"answer": [
{
"id": 123,
"type": "<string>",
"content": "<string>",
"order": 123,
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"timestamp": "2023-11-07T05:31:56Z",
"contentWithSpeaker": "<string>",
"start": 123
}
],
"explanation": "<string>"
},
"overrideBy": 123,
"overrideAiOriginalResult": true,
"overrideReason": "<string>",
"protocolResults": [
{
"id": 123,
"percentScore": 123,
"guideCardName": "<string>",
"evaluationData": {
"protocolName": "<string>",
"knowledgeId": 123,
"knowledgeVersionId": 123,
"knowledgeSectionId": 123,
"allCallersKnowledgeId": 123,
"allCallersKnowledgeVersionId": 123,
"allCallersKnowledgeSectionId": 123,
"finalScore": 123,
"selection": {
"selectedGuidecardId": 123,
"selectedKnowledgeId": 123,
"aiRecommendedGuidecardId": 123,
"aiRecommendedKnowledgeId": 123,
"isCorrect": true,
"score": 123,
"confidence": 123,
"justification": "<string>",
"feedback": "<string>",
"scoringBreakdown": {
"isCorrect": true,
"aiRecommendedGuidecardId": 123,
"selectedGuidecardId": 123,
"justification": "<string>"
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
},
"selectionScore": 123,
"questions": {
"questions": [
{
"questionId": 123,
"referenceId": "<string>",
"questionText": "<string>",
"isCritical": true,
"isOptional": true,
"answered": true,
"answer": "<string>",
"parentQuestionId": 123,
"displayCriteria": "<string>",
"lowQualityCriteria": "<string>",
"highQualityCriteria": "<string>",
"aiSummary": "<string>",
"aiScore": 123,
"source": "<string>",
"conditionMet": true,
"scoring": {
"includesInScore": true,
"exclusionReason": "<string>",
"questionWeight": 123,
"percentContribution": 123,
"pointValue": 123
},
"askedAtSeconds": 123,
"answeredAtSeconds": 123,
"answeredUnprompted": true,
"askedSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"answerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
}
],
"aiExplanation": "<string>",
"contextSources": [
{
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
],
"summary": "<string>",
"scoringBreakdown": {
"totalQuestions": 123,
"criticalQuestions": 123,
"nonCriticalQuestions": 123,
"criticalAnswered": 123,
"nonCriticalAnswered": 123,
"criticalWeight": 123,
"nonCriticalWeight": 123,
"totalPossibleWeight": 123,
"earnedWeight": 123,
"optionalQuestions": 123,
"conditionNotMetQuestions": 123
}
},
"questionsScore": 123,
"preArrival": {
"instructions": [
{
"instructionId": 123,
"referenceId": "<string>",
"instructionText": "<string>",
"isCritical": true,
"delivered": true,
"score": 123,
"aiSummary": "<string>",
"deliveredSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"scoring": {
"instructionWeight": 123,
"percentContribution": 123,
"pointValue": 123
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
}
],
"aiExplanation": "<string>",
"contextSources": [
{
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
],
"scoringBreakdown": {
"totalInstructions": 123,
"criticalInstructions": 123,
"nonCriticalInstructions": 123,
"criticalDelivered": 123,
"nonCriticalDelivered": 123,
"criticalWeight": 123,
"nonCriticalWeight": 123,
"totalPossibleWeight": 123,
"earnedWeight": 123
}
},
"preArrivalScore": 123,
"allCallers": {
"questions": [
{
"questionId": 123,
"referenceId": "<string>",
"questionText": "<string>",
"isCritical": true,
"isOptional": true,
"answered": true,
"answer": "<string>",
"parentQuestionId": 123,
"displayCriteria": "<string>",
"lowQualityCriteria": "<string>",
"highQualityCriteria": "<string>",
"aiSummary": "<string>",
"aiScore": 123,
"source": "<string>",
"conditionMet": true,
"scoring": {
"includesInScore": true,
"exclusionReason": "<string>",
"questionWeight": 123,
"percentContribution": 123,
"pointValue": 123
},
"askedAtSeconds": 123,
"answeredAtSeconds": 123,
"answeredUnprompted": true,
"askedSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"answerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
}
],
"aiExplanation": "<string>",
"contextSources": [
{
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
],
"summary": "<string>",
"scoringBreakdown": {
"totalQuestions": 123,
"criticalQuestions": 123,
"nonCriticalQuestions": 123,
"criticalAnswered": 123,
"nonCriticalAnswered": 123,
"criticalWeight": 123,
"nonCriticalWeight": 123,
"totalPossibleWeight": 123,
"earnedWeight": 123,
"optionalQuestions": 123,
"conditionNotMetQuestions": 123
}
},
"allCallersScore": 123,
"assist": {
"requestedKnowledgeSectionId": 123,
"assistantIdentifier": "<string>",
"requestedGuidecardName": "<string>",
"requestedKnowledgeId": 123,
"diverged": true
}
},
"isEdited": true,
"overrideBy": 123,
"overrideByName": "<string>",
"overrideReason": "<string>",
"overrideAt": "2023-11-07T05:31:56Z"
}
]
}
],
"completedBy": 123,
"eventSummary": {
"summary": "<string>",
"variableValues": [
{
"value": "<string>",
"variable": "<string>",
"explanation": "<string>",
"index": 123,
"originalValue": "<string>",
"overrideBy": 123,
"overrideReason": "<string>",
"overrideAt": "2023-11-07T05:31:56Z"
}
]
},
"eventTimes": {
"times": [
{
"explanation": "<string>",
"seconds": 123,
"name": "<string>",
"segment": {
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
}
]
},
"scaleScoreLevel": "<string>",
"rawPercentScore": 123,
"earnedScore": 123,
"totalPossibleScore": 123,
"isPointsOff": true,
"clearReason": "<string>",
"deleted": true,
"isTraining": true,
"isSandbox": true,
"hasOverride": true,
"lowTranscriptionQuality": true,
"createdAt": "2023-11-07T05:31:56Z",
"phaseEnrollments": [
{
"id": 123,
"tenantId": 123,
"phaseId": 123,
"phaseName": "<string>",
"user": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"loginEnabled": true,
"notificationEmail": "<string>",
"id": 123,
"tenantId": 123,
"idpSub": "<string>",
"personnelId": "<string>",
"roleId": 123,
"isSuperAdmin": true,
"isSystemUser": true,
"mfaEnabled": true,
"lastLoginAt": "2023-11-07T05:31:56Z",
"isSupervisor": true,
"isTemplatePublishingAllowed": true,
"vlrIdentifier": "<string>",
"passwordExpiresAt": "2023-11-07T05:31:56Z",
"isPasswordExpired": true,
"isSupportUser": true,
"investmentTrainingPipeline": true
},
"primaryTrainingOfficer": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"loginEnabled": true,
"notificationEmail": "<string>",
"id": 123,
"tenantId": 123,
"idpSub": "<string>",
"personnelId": "<string>",
"roleId": 123,
"isSuperAdmin": true,
"isSystemUser": true,
"mfaEnabled": true,
"lastLoginAt": "2023-11-07T05:31:56Z",
"isSupervisor": true,
"isTemplatePublishingAllowed": true,
"vlrIdentifier": "<string>",
"passwordExpiresAt": "2023-11-07T05:31:56Z",
"isPasswordExpired": true,
"isSupportUser": true,
"investmentTrainingPipeline": true
},
"startDate": "2023-12-25",
"originalPlannedEndDate": "2023-12-25",
"projectedEndDate": "2023-12-25",
"actualEndDate": "2023-12-25",
"status": "SCHEDULED",
"statusReason": "<string>",
"signoffId": 123
}
]
}
],
"number": 123,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"numberOfElements": 123,
"pageable": {
"offset": 123,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"pageNumber": 123,
"pageSize": 123,
"paged": true,
"unpaged": true
},
"empty": true
}Quality Assurance
List Evaluations
Get a paginated list of QA Evaluations for a user
GET
/
api
/
v1
/
external
/
qa
/
user
/
{userId}
/
evaluations
List Evaluations
curl --request GET \
--url https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluationsimport requests
url = "https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.govworx.net/api/v1/external/qa/user/{userId}/evaluations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"totalElements": 123,
"totalPages": 123,
"first": true,
"last": true,
"size": 123,
"content": [
{
"id": 123,
"eventId": 123,
"userId": 123,
"eventPersonnelId": 123,
"status": "PENDING",
"evaluationTemplate": {
"id": 123,
"name": "<string>",
"color": "<string>",
"sandboxMode": true,
"sandboxExpiresAt": "2023-11-07T05:31:56Z",
"active": true,
"templateIdentifier": "<string>",
"version": 123,
"isPdfTemplate": true
},
"results": [
{
"id": 123,
"eventId": 123,
"userId": 123,
"evaluationTemplateCriteria": {
"id": 123,
"description": "<string>",
"orderIndex": 123,
"score": 123,
"scoringCriteriaCriticalityLevelId": 123,
"skillArea": {
"id": 123,
"refId": "<string>",
"name": "<string>",
"description": "<string>"
},
"parentCriteriaId": 123,
"type": "<string>",
"taskId": "<string>",
"smartTask": {
"id": 123,
"prompt": "<string>",
"contextSources": [
"<string>"
],
"additionalInstructions": "<string>",
"overrideGeneratedInstructions": "<string>",
"type": "<string>"
}
},
"score": 123,
"totalPossibleScore": 123,
"manualInputValue": 123,
"isPassing": true,
"classification": "STRENGTH",
"comment": "<string>",
"speedSeconds": 123,
"explanation": "<string>",
"qaResponse": {
"smartTaskId": 123,
"standardCriteriaId": "<string>",
"passing": true,
"answer": [
{
"id": 123,
"type": "<string>",
"content": "<string>",
"order": 123,
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"timestamp": "2023-11-07T05:31:56Z",
"contentWithSpeaker": "<string>",
"start": 123
}
],
"explanation": "<string>"
},
"overrideBy": 123,
"overrideAiOriginalResult": true,
"overrideReason": "<string>",
"protocolResults": [
{
"id": 123,
"percentScore": 123,
"guideCardName": "<string>",
"evaluationData": {
"protocolName": "<string>",
"knowledgeId": 123,
"knowledgeVersionId": 123,
"knowledgeSectionId": 123,
"allCallersKnowledgeId": 123,
"allCallersKnowledgeVersionId": 123,
"allCallersKnowledgeSectionId": 123,
"finalScore": 123,
"selection": {
"selectedGuidecardId": 123,
"selectedKnowledgeId": 123,
"aiRecommendedGuidecardId": 123,
"aiRecommendedKnowledgeId": 123,
"isCorrect": true,
"score": 123,
"confidence": 123,
"justification": "<string>",
"feedback": "<string>",
"scoringBreakdown": {
"isCorrect": true,
"aiRecommendedGuidecardId": 123,
"selectedGuidecardId": 123,
"justification": "<string>"
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
},
"selectionScore": 123,
"questions": {
"questions": [
{
"questionId": 123,
"referenceId": "<string>",
"questionText": "<string>",
"isCritical": true,
"isOptional": true,
"answered": true,
"answer": "<string>",
"parentQuestionId": 123,
"displayCriteria": "<string>",
"lowQualityCriteria": "<string>",
"highQualityCriteria": "<string>",
"aiSummary": "<string>",
"aiScore": 123,
"source": "<string>",
"conditionMet": true,
"scoring": {
"includesInScore": true,
"exclusionReason": "<string>",
"questionWeight": 123,
"percentContribution": 123,
"pointValue": 123
},
"askedAtSeconds": 123,
"answeredAtSeconds": 123,
"answeredUnprompted": true,
"askedSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"answerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
}
],
"aiExplanation": "<string>",
"contextSources": [
{
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
],
"summary": "<string>",
"scoringBreakdown": {
"totalQuestions": 123,
"criticalQuestions": 123,
"nonCriticalQuestions": 123,
"criticalAnswered": 123,
"nonCriticalAnswered": 123,
"criticalWeight": 123,
"nonCriticalWeight": 123,
"totalPossibleWeight": 123,
"earnedWeight": 123,
"optionalQuestions": 123,
"conditionNotMetQuestions": 123
}
},
"questionsScore": 123,
"preArrival": {
"instructions": [
{
"instructionId": 123,
"referenceId": "<string>",
"instructionText": "<string>",
"isCritical": true,
"delivered": true,
"score": 123,
"aiSummary": "<string>",
"deliveredSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"scoring": {
"instructionWeight": 123,
"percentContribution": 123,
"pointValue": 123
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
}
],
"aiExplanation": "<string>",
"contextSources": [
{
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
],
"scoringBreakdown": {
"totalInstructions": 123,
"criticalInstructions": 123,
"nonCriticalInstructions": 123,
"criticalDelivered": 123,
"nonCriticalDelivered": 123,
"criticalWeight": 123,
"nonCriticalWeight": 123,
"totalPossibleWeight": 123,
"earnedWeight": 123
}
},
"preArrivalScore": 123,
"allCallers": {
"questions": [
{
"questionId": 123,
"referenceId": "<string>",
"questionText": "<string>",
"isCritical": true,
"isOptional": true,
"answered": true,
"answer": "<string>",
"parentQuestionId": 123,
"displayCriteria": "<string>",
"lowQualityCriteria": "<string>",
"highQualityCriteria": "<string>",
"aiSummary": "<string>",
"aiScore": 123,
"source": "<string>",
"conditionMet": true,
"scoring": {
"includesInScore": true,
"exclusionReason": "<string>",
"questionWeight": 123,
"percentContribution": 123,
"pointValue": 123
},
"askedAtSeconds": 123,
"answeredAtSeconds": 123,
"answeredUnprompted": true,
"askedSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"answerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"overrideBy": 123,
"overrideByName": "<string>",
"overrideAt": "2023-11-07T05:31:56Z",
"overrideReason": "<string>"
}
],
"aiExplanation": "<string>",
"contextSources": [
{
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
],
"summary": "<string>",
"scoringBreakdown": {
"totalQuestions": 123,
"criticalQuestions": 123,
"nonCriticalQuestions": 123,
"criticalAnswered": 123,
"nonCriticalAnswered": 123,
"criticalWeight": 123,
"nonCriticalWeight": 123,
"totalPossibleWeight": 123,
"earnedWeight": 123,
"optionalQuestions": 123,
"conditionNotMetQuestions": 123
}
},
"allCallersScore": 123,
"assist": {
"requestedKnowledgeSectionId": 123,
"assistantIdentifier": "<string>",
"requestedGuidecardName": "<string>",
"requestedKnowledgeId": 123,
"diverged": true
}
},
"isEdited": true,
"overrideBy": 123,
"overrideByName": "<string>",
"overrideReason": "<string>",
"overrideAt": "2023-11-07T05:31:56Z"
}
]
}
],
"completedBy": 123,
"eventSummary": {
"summary": "<string>",
"variableValues": [
{
"value": "<string>",
"variable": "<string>",
"explanation": "<string>",
"index": 123,
"originalValue": "<string>",
"overrideBy": 123,
"overrideReason": "<string>",
"overrideAt": "2023-11-07T05:31:56Z"
}
]
},
"eventTimes": {
"times": [
{
"explanation": "<string>",
"seconds": 123,
"name": "<string>",
"segment": {
"speakerSegment": {
"id": "<string>",
"start": 123,
"end": 123,
"transcriptionText": "<string>",
"sentiment": "<string>",
"sentimentScore": 123,
"speakerIdx": 123,
"channel": 123,
"speaker": "<string>",
"segmentKind": "<string>",
"audioOffset": 123,
"objectKey": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"score": 123
}
],
"originalText": "<string>",
"smoothedWords": [
{
"wordIndex": 123,
"original": "<string>",
"smoothed": "<string>"
}
],
"identifiedUserId": 123
},
"mediaId": 123,
"identifiedSpeaker": true,
"identifiedUserId": 123,
"id": 123,
"type": "<string>",
"content": "<string>",
"start": 123,
"order": 123,
"contentWithSpeaker": "<string>"
}
}
]
},
"scaleScoreLevel": "<string>",
"rawPercentScore": 123,
"earnedScore": 123,
"totalPossibleScore": 123,
"isPointsOff": true,
"clearReason": "<string>",
"deleted": true,
"isTraining": true,
"isSandbox": true,
"hasOverride": true,
"lowTranscriptionQuality": true,
"createdAt": "2023-11-07T05:31:56Z",
"phaseEnrollments": [
{
"id": 123,
"tenantId": 123,
"phaseId": 123,
"phaseName": "<string>",
"user": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"loginEnabled": true,
"notificationEmail": "<string>",
"id": 123,
"tenantId": 123,
"idpSub": "<string>",
"personnelId": "<string>",
"roleId": 123,
"isSuperAdmin": true,
"isSystemUser": true,
"mfaEnabled": true,
"lastLoginAt": "2023-11-07T05:31:56Z",
"isSupervisor": true,
"isTemplatePublishingAllowed": true,
"vlrIdentifier": "<string>",
"passwordExpiresAt": "2023-11-07T05:31:56Z",
"isPasswordExpired": true,
"isSupportUser": true,
"investmentTrainingPipeline": true
},
"primaryTrainingOfficer": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"loginEnabled": true,
"notificationEmail": "<string>",
"id": 123,
"tenantId": 123,
"idpSub": "<string>",
"personnelId": "<string>",
"roleId": 123,
"isSuperAdmin": true,
"isSystemUser": true,
"mfaEnabled": true,
"lastLoginAt": "2023-11-07T05:31:56Z",
"isSupervisor": true,
"isTemplatePublishingAllowed": true,
"vlrIdentifier": "<string>",
"passwordExpiresAt": "2023-11-07T05:31:56Z",
"isPasswordExpired": true,
"isSupportUser": true,
"investmentTrainingPipeline": true
},
"startDate": "2023-12-25",
"originalPlannedEndDate": "2023-12-25",
"projectedEndDate": "2023-12-25",
"actualEndDate": "2023-12-25",
"status": "SCHEDULED",
"statusReason": "<string>",
"signoffId": 123
}
]
}
],
"number": 123,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"numberOfElements": 123,
"pageable": {
"offset": 123,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"pageNumber": 123,
"pageSize": 123,
"paged": true,
"unpaged": true
},
"empty": true
}Path Parameters
Query Parameters
Show child attributes
Show child attributes
Response
200 - */*
OK
⌘I

