POST /performance-management/appraisal/session/{sessionId}/notification/change
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 | Description |
| sessionId (required) | The ID of the session |
| dailyReviewersNotificationDay (required) | Frequency of notification delivery, e.g., once every three days. |
| dailyReviewersNotificationTimeMilli (required) | Exact time of notification sending (set in milliseconds, UTC+0). |
Response Codes
| 200 | OК | The settings have been updated. |
| 400 | Bad request | A request error |
| 401 | Unauthorized | An authorization error |
Sample Request
POST /performance-management/appraisal/session/eb84d095-4522-11f0-ad1d-2e74d9eca15f/notification/change HTTP/1.1
Host: api-learn.ispringlearn.com
Content-Type: application/json
Accept: application/json
X-Auth-Account-Url: https://myaccount.ispringlearn.com
Authorization: Bearer 69f6czB9Iwmvui32QHOhesjs9xlAGYPNxlTOtl92t78
{
"dailyReviewersNotificationDay": 3,
"dailyReviewersNotificationTimeMilli": "86399999"
}
Sample Response
HTTP/1.1 200 OK