v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Performance > ReviewQuestionnaireByStrategy

Reads a single Review questionnaire by strategy

Retrieves the questionnaires by reviewer strategy for review processes.

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

Path parameters

idstring required

Filter by review process IDs

Response

OK

idstring required

Review process ID

performance_review_process_idstring required

Review process ID

self_questionnaireobject

Questionnaire for self evaluation

manager_questionnaireobject

Questionnaire for manager evaluation

direct_report_questionnaireobject

Questionnaire for direct report evaluation

peers_questionnaireobject

Questionnaire for peers evaluation

employee_score_self_questionnaireobject

Questionnaire included in the end of self evaluation to evaluate the employee performance

employee_score_manager_questionnaireobject

Questionnaire included in the end of manager evaluation to evaluate the employee performance

employee_potential_score_manager_questionnaireobject

Questionnaire included in the end of manager evaluation to evaluate the employee potential

Example response

{
  "id": "1",
  "performance_review_process_id": "1",
  "default_rating_scale": [
    {
      "value": 1,
      "text": "Poor"
    },
    {
      "value": 2,
      "text": "Inconsistent"
    },
    {
      "value": 3,
      "text": "Meets expectations"
    },
    {
      "value": 4,
      "text": "Exceeds expectations"
    },
    {
      "value": 5,
      "text": "Exceptional"
    }
  ],
  "self_questionnaire": {
    "reviewer_strategy": "self",
    "content": [
      {
        "uuid": "26f26623-043f-4110-a5cb-1fd54a69626f",
        "type": "question",
        "questions": [
          {
            "uuid": "84ba99f3-4e4f-4917-a2af-6d0aa8c2e0f2",
            "mandatory": true,
            "with_comment": false,
            "title": "Do you think you are a team player?",
            "answer_type": "single_choice",
            "choice_options": [
              "Yes",
              "No"
            ]
          }
        ]
      }
    ]
  },
  "manager_questionnaire": {
    "reviewer_strategy": "manager",
    "content": [
      {
        "uuid": "b69c9b4d-0aa6-4ada-89d5-5fdcb04c1327",
        "type": "section",
        "section_title": "Performance",
        "questions": [
          {
            "uuid": "a347a2fd-1a0a-4eee-b6c8-f74be63624fb",
            "mandatory": true,
            "with_comment": true,
            "title": "How would you rate the commitment of the employee?",
            "answer_type": "rating"
          }
        ]
      }
    ]
  }
}