v1
latestOpenAPI 3.1.02026-07-26549156879.0 KBPerformance > 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
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
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"
}
]
}
]
}
}