v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Performance > EmployeeScoreScale

Reads all Employee score scales

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

Query parameters

ids[]string[]

Filter by employee score scale IDs

Filter by employee score scale IDs

[
  "1",
  "2",
  "3"
]

Response

OK

Example response

{
  "data": [
    {
      "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"
        }
      ]
    }
  ]
}