AVAILABLE WITH BUSINESS SUBSCRIPTION

Request

POST /performance-management/competencies/competency/{competencyId}/indicator/{indicatorId}/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.

Response Parameters

ParameterDescription
competencyId (required)

The ID of the competency you want to edit

You can create and edit indicators only in competencies where reviewMethod = INDICATORS_INDIVIDUALLY.

indicatorId (required)The ID of the indicator you want to edit
name (required)Name of indicator
levels (required)An array of scale levels
levelId (required)ID of level
description (required)Description of level

Response Codes

Code

Text

Description

200OKThe request has been successfully processed.
401UnauthorizedAn authorization error
403Permission deniedThe user doesn't have enough permissions to get information regarding the course

Sample Request

POST /performance-management/competencies/competency/39f991a3-385e-11ef-a8d5-5eea6081d47f/indicator/39f991a3-385e-11ef-a8d5-5eea6081d47f/change
Host: api-learn.ispringlearn.com
Content-Type: application/json
Accept: application/json
X-Auth-Account-Url: https://myaccount.ispringlearn.com
Authorization: Bearer N3Hk5sds1_DVj1JFTqJKFWjGHf94DWp1YSffLxeZX8co   

{
  "name": "new name of indicator",
  "levels": [
    {
      "levelId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "description": "description of indicator"
    }
  ]
}  
CODE

Sample Response

https/1.1 200 OK
CODE