Account Owner and Account Administrators
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 |
| Parameter | Description |
sessionId | Session ID |
name | Session name |
description | Session description |
managerId | Assessment manager ID |
profileId | Competency profile ID |
status | The status of the session:
|
startDate | The date and time when the session begins. |
endDate | The date and time when the session ends. |
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. |
| 404 | Session not found | The session was not found. |
POST /performance-management/appraisal/session/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
{
"sessionIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
} |
[
{
"sessionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"description": "string",
"managerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"profileId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "NOT_STARTED",
"startDate": "string",
"endDate": "string"
} |