iSpring LMS API Documentation REST API Managing 360° Review Current: Creating a Rating Scale Creating a Rating Scale AVAILABLE WITH ENTERPRISE SUBSCRIPTIONRequest: POST /performance-management/competencies/scale/createPermissions to Run the RequestAccount Owner and Account AdministratorsRequest HeadersHeaderDescriptionAuthorization (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. Existing customers may continue using ispringlearn.com, and new customers should use ispring.com. Response ParametersParameterDescriptionname(required)The name of rating scale or level (up to 255 characters allowed)levels(required)An array of levels (2-100 elements allowed)score(required)Points per level (from -10000 to 10000)Response CodesCodeTextDescription200OKThe request has been successfully processed. The response body contains the JSON data regarding a list of rating scale401UnauthorizedAn authorization error403Permission deniedThe user doesn't have enough permissions to get information regarding the courseSample Request POST /performance-management/competencies/scale/create 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": "Bad/Good", "levels": [ { "name": "Bad", "score": 0 }, { "name": "Good", "score": 1 } ] } CODE Sample Response 39f991a3-385e-11ef-a8d5-5eea6081d47f CODE ×