v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Performance > EmployeeScoreScale

Reads a single Employee score scale

Retrieves the predefined employee score scales that can be set for the company to be used when scoring the employee inside a review.

get/api/2026-07-01/resources/performance/employee_score_scales/{id}

Path parameters

idstring required

Filter by employee score scale IDs

Response

OK

idstring required

Employee score scale ID

is_defaultboolean required

Example response

{
  "id": "1",
  "scale": [
    {
      "value": 1,
      "text": "Unsatisfactory"
    },
    {
      "value": 2,
      "text": "Missed expectations"
    },
    {
      "value": 3,
      "text": "Meets expectations"
    },
    {
      "value": 4,
      "text": "Exceeds expectations"
    },
    {
      "value": 5,
      "text": "Outstanding"
    }
  ]
}