AVAILABLE WITH BUSINESS SUBSCRIPTION

The request is only available for completed sessions.

POST /job-training/completed-session/criterion-group/result/list

Permissions to Run the Request

Account Owner and Account Administrators

Request Headers

HeaderDescription
Authorization (required)Access token. You can obtain a token by making a request
Content-Type: application/json
(required)
Property for processing a request in JSON
Accept: application/json
(required)
Property for processing a request in JSON
ParameterDescription
sessionIds (optional)

Session ID (can be more than one)

checklistId (optional)

Checklist ID (only one)

groupIds (optional)

Comptency Area ID (can be more than one)

Response Parameters

ParameterDescription

groupId

Competency Area ID

groupTitle

Name of the Competency Area

sessionId

Session ID

checklistId

Checklist ID

result

Results per Competency Area

totalPoints

Total points per Comptency Area
pointsEarned points

employeeId

Employee ID

observerId

Observer ID

Skipped metrics won't be counted toward the final score.

Example: A competency area includes three criteria. If the observer skips one criterion, the totalPoints parameter will be equal to 2, not 3. 

Response Codes

CodeText

Description

200ОК

The request has been successfully processed.

400Bad Request

A request error


401 UnauthorizedAn authorization error
403

Permission Denied

No permission to run this request. 
Only the Account Owner and Account Administrators can run this request. 

Sample Request

POST /job-training/completed-session/criterion-group/result/list
Host: api-learn.ispringlearn.com
Content-Type: application/json
Accept: application/json
X-Auth-Account-Url: https://myaccount.ispringlearn.com
Authorization: Bearer N3Hk5sds1_DVj1JFTqJKFWjGHf94DWp1YSffLxeZX8co


{
  "checklistId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "sessionIds": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "groupIds": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ]
}
CODE

Sample Response

[
  {
    "groupId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "checklistId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "groupTitle": "Guest Service",
    "sessionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "result": 80,
    "totalPoints": 30,
    "points": 18,
    "employeeId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "observerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  }
]
CODE