AVAILABLE WITH BUSINESS SUBSCRIPTION

The request is only available for completed sessions.

POST /job-training/completed-session/criterion/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

checklistId (optional)

Checklist ID (only one)
sessionIds (optional)Session ID (can be more than one)
groupIds (optional)Competency Area ID (can be more than one)
criterionIds (optional)Criterion ID (can be more than one)

Response Parameters

ParameterDescription

criterionId

Criterion ID

criterionTitle

Criterion Name

checklistId

Checklist ID

groupId

Competency Area ID

sessionId

Session ID

skipped

The criterion was graded / skipped 

points

Earned points (if the criterion was graded) 

totalPoints

Total points (if the criterion was graded)

employeeId

Employee ID

observerId

Observer ID

Response Codes

CodeTextDescription
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/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

[
  {
    "criterionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "groupId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "checklistId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "criterionTitle": "Greets with confidence",
    "sessionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "skipped": true,
    "totalPoints": 0,
    "points": 0,
    "employeeId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "observerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  }
]
CODE