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 | Description |
| sessionId (required) | The ID of the session you want to update |
| name (optional) | The session’s name, must be between 1 and 255 characters |
| description (optional) | The session’s description |
| instruction (optional) | Instructions for the questionnaire |
| selfReviewInstruction (optional) | Self-review instructions |
| profileId (optional) | The competency profile ID used for conducting the survey |
| managerId (optional) | The session manager ID |
At least one optional parameter must be provided when updating a session. |
| Code | Text | Description |
|---|---|---|
| 200 | OК | The session has been updated |
| 400 | Bad request | A request error |
| 401 | Unauthorized | An authorization error |
POST /performance-management/appraisal/session/4bba0d8f-1552-11f0-91a5-02420aff005f/update
Host: api-learn.ispringlearn.com
Content-Type: application/json
Accept: application/json
X-Auth-Account-Url: https://myaccount.ispringlearn.com
Authorization: Bearer nkMPmfnb3aGF6XgTpWqoNbIe7JBvUl_bCyUN5rMfGyY
{
"name": "New name",
"description": "New description",
"instruction": "New instruction",
"selfReviewInstruction": "SelfReviewInstruction - 2",
"profileId": "68f191b2-1478-11f0-86f6-02420aff0067",
"managerId": "63f72353-137f-11f0-ad73-02420aff0051"
} |
HTTP/1.1 200 OK |