v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Performance > ReviewQuestionnaireByStrategy

Update questionnaire for strategies a Review questionnaire by strategy

Update the review process questionnaire for a specific reviewer strategy (review type). It can be used to add, edit or delete questions from a draft review process.

post/api/2026-07-01/resources/performance/review_questionnaire_by_strategies/update_questionnaire_for_strategy

Request body

performance_review_process_idstring required

Review process ID

strategy'self' | 'manager' | 'direct_reports' | 'peers' required

Reviewer strategy to update the questionnaire for

Example request

{
  "performance_review_process_id": "1",
  "strategy": "manager",
  "questionnaire_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"
        },
        {
          "uuid": "a922bd33-e9c8-4856-87c6-92eb895f4271",
          "mandatory": true,
          "with_comment": false,
          "title": "What are the strengths of the employee?",
          "answer_type": "text"
        }
      ]
    },
    {
      "uuid": "26f26623-043f-4110-a5cb-1fd54a69626f",
      "type": "question",
      "questions": [
        {
          "uuid": "84ba99f3-4e4f-4917-a2af-6d0aa8c2e0f2",
          "mandatory": true,
          "with_comment": false,
          "title": "Do you think the employee is a team player?",
          "answer_type": "multiple_choice",
          "max_choices": 1,
          "choice_options": [
            "Yes",
            "No"
          ]
        }
      ]
    }
  ]
}

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"
          }
        ]
      }
    ]
  }
}