AVAILABLE WITH BUSINESS SUBSCRIPTION

Request

GET /performance-management/competencies/scale/list

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

Parameter

Description

scaleId 

Rating scale ID

name

The name of rating scale or level within a scale

levels 

An array of rating scale levels

levelId 

Level ID

score

Points for each level


Response Codes

Code

Text

Description

200OKThe request has been successfully processed. The response body contains the JSON data regarding a list of rating scale
401UnauthorizedAn authorization error
403Permission deniedThe user doesn't have enough permissions to get information regarding the course

Sample Request

GET ​/performance-management/competencies/scale/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
CODE

Sample Response

[
  {
    "scaleId": "88c4675c-217c-11ef-a309-b605bd64b828",
    "name": "3-level Competency Scale",
    "levels": [
      {
        "levelId": "88c8f7da-217c-11ef-a309-b605bd64b828",
        "name": "Low",
        "score": 0
      },
      {
        "levelId": "88cbf4f0-217c-11ef-a309-b605bd64b828",
        "name": "Basic",
        "score": 1
      },
      {
        "levelId": "88cc907d-217c-11ef-a309-b605bd64b828",
        "name": "Proficient",
        "score": 2
      }
    ]
  },
  {
    "scaleId": "a6f71023-3d3a-11ef-b38a-0ee70146fdeb",
    "name": "Yes/No",
    "levels": [
      {
        "levelId": "a6f8b8df-3d3a-11ef-b38a-0ee70146fdeb",
        "name": "No",
        "score": 0
      },
      {
        "levelId": "a6f91e38-3d3a-11ef-b38a-0ee70146fdeb",
        "name": "Yes",
        "score": 1
      }
    ]
  },
  {
    "scaleId": "de23e3f0-3d21-11ef-b38a-0ee70146fdeb",
    "name": "Good/Bad",
    "levels": [
      {
        "levelId": "de24a357-3d21-11ef-b38a-0ee70146fdeb",
        "name": "Bad",
        "score": 0
      },
      {
        "levelId": "de2646a3-3d21-11ef-b38a-0ee70146fdeb",
        "name": "Good",
        "score": 1
      }
    ]
  }
]
  
CODE