GET /performance-management/appraisal/session/{sessionId}/results
Permissions to Run the Request
Account Owner and Account Administrators
Request Headers
Header | Description |
|---|---|
| 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. |
| Parameter | |
sessionIds | Session ID |
Response Parameters
| Parameter | Description |
| employeeId | ID of the evaluated employee |
| session ID | Session ID |
| competencyResults | An array with results by competencies |
| competencyId | Competency ID |
| result | The score for the competency |
| indicatorResults | An array with results by indicators |
| indicatorId | Indicator ID |
| result | The score for the indicator |
If there are no results (no one has evaluated an employee), the score for the competency and indicator won't be included in the response.
Response Codes
Code | Text | Description |
|---|---|---|
| 200 | OK | The request has been successfully processed. |
| 400 | Bad Request | A request error. |
| 401 | Unauthorized | An authorization error |
| 403 | Permission denied | No permission to run this request. Only the Account Owner and Account Administrators can run this request. |
Sample Request
GET /performance-management/appraisal/session/{sessionId}/results
Host: api-learn.ispringlearn.com
Content-Type: application/json
Accept: application/json
X-Auth-Account-Url: https://myaccount.ispringlearn.com
Authorization: Bearer N3Hk5sds1_DVj1JFTqJKFWjGHf94DWp1YSffLxeZX8co
Sample Response
[
{
"employeeId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"sessionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"competencyResults": [
{
"competencyId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"result": 0,
}
],
"indicatorResults": [
{
"indicatorId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"result": 0,
}
]
}
]