---
title: 5.8 Reviews
description: "Review Template {     &quot;id&quot;: &lt;int&gt;,     &quot;managerPersonId&quot;: &lt;int&gt;,        &quot;internalReviewerPersonIds&quot;: [&lt;int&gt;],     &quot;personId&quot;: &lt;int&gt;,     &quot;title&quot;: &quot;&lt;string&gt;&quot;,     &quot;description&quot;: &lt;string&gt;     &quot;reviewTyp"
---

[Skip to content](https://knowledge.staffcircle.info/5.8-reviews#main-content)

English

Show submenu for translations

![staffCircle_logo_trans3-1.png\]](https://knowledge.staffcircle.info/hs-fs/hubfs/staffCircle_logo_trans3-1.png?height=50&name=staffCircle_logo_trans3-1.png)

- [StaffCircle University](https://www.staffcircle.com/university)
- [StaffCircle Resources](https://www.staffcircle.com/resources/)

Open main navigation

Close main navigation

- [StaffCircle University](https://www.staffcircle.com/university)
- [StaffCircle Resources](https://www.staffcircle.com/resources/)
- English
  
  Show submenu for translations
- [Learn more at the StaffCircle University](https://www.staffcircle.com/university)

[Learn more at the StaffCircle University](https://www.staffcircle.com/university)

 Need a hand? Our FAQs are here to help!

- There are no suggestions because the search field is empty.

1. [Help Center](https://knowledge.staffcircle.info/?hsLang=en)
2. [StaffCircle API](https://knowledge.staffcircle.info/staffcircle-api?hsLang=en)

# 5.8 Reviews

| **Review Template** | **{** **    "id": <int>,** **    "managerPersonId": <int>,** **       "internalReviewerPersonIds": \[<int>\],** **    "personId": <int>,** **    "title": "<string>",** **    "description": <string>** **    "reviewType":<string>,** **    "dueOn": <string ISO 8601 Date>,** **    "completedAt": <string ISO 8601 Date>,** **    "attachedDocumentIds": \[<int>\],** **    "comments": \[<comment>\],** **    "linkedObjectives": \[** **      {** **        "id": <int>,** **        "title :<string>,** **        "category": <string>** **      },** **    \],** **    "appraisalSummary": { <id’s of appraisal question templates>** **      "personAppraisalTemplateId": <int>** **         "managerAppraisalTemplateId": <int>** **         "internalAppraisalTemplateId": <int>** **         "externalAppraisalTemplateId": <int>** **    },** **    "scores": {** **      "score": <int>,** **         "overriddenScore": <int>,** **      "currentScore": <int>,** **         "calculatedScore": <int>,** **    },** **    "createdAt": <string ISO 8601 Date>,** **       "createdByPersonId": <int>,** **    "modifiedAt": <string ISO 8601 Date>,** **       "modifiedByPersonId": <int>,** **    "contentSettings": <contentSettings>** **       "notificationSettings": <notificationSettings>** **  }** **}** |
| --- | --- |

#### Json Schema (for use with MS Power Automate)

```
{  "type": "object",  "properties": {    "subjectType": {      "type": "string"    },    "changeType": {      "type": "string"    },    "subjectFrontEndUrl": {      "type": "string"    },    "timeStamp": {      "type": "string"    },    "data": {      "type": "object",      "properties": {        "id": {          "type": "integer"        },        "previousReviewId": {          "type": "integer"        },        "manager": {          "type": "object",          "properties": {            "PersonId": {              "type": "integer"            },            "FirstName": {              "type": "string"            },            "FamilyName": {              "type": "string"            },            "Email": {              "type": "string"            }          }        },        "internalReviewerPersonIds": {          "type": "array",          "items": {            "type": "integer"          }        },        "person": {          "type": "object",          "properties": {            "PersonId": {              "type": "integer"            },            "FirstName": {              "type": "string"            },            "FamilyName": {              "type": "string"            },            "Email": {              "type": "string"            }          }        },        "title": {          "type": "string"        },        "description": {          "type": "string"        },        "reviewType": {          "type": "string"        },        "personNotes": {          "type": "string"        },        "managerNotes": {          "type": "string"        },        "dueOn": {          "type": "string"        },        "completedAt": {          "type": "string"        },        "personConfirmedCompletionAt": {          "type": "string"        },        "interval": {          "type": "string"        },        "attachedDocumentIds": {          "type": "array",          "items": {            "type": "integer"          }        },        "comments": {          "type": "array",          "items": {            "type": "object",            "properties": {              "id": {                "type": "integer"              },              "relatedItemId": {                "type": "integer"              },              "itemType": {                "type": "string"              },              "comment": {                "type": "string"              },              "parentCommentId": {                "type": "integer"              },              "attachedDocumentIds": {                "type": "array",                "items": {                  "type": "integer"                }              },              "likesPersonIds": {                "type": "array",                "items": {                  "type": "integer"                }              },              "createdAt": {                "type": "string"              },              "createdByPerson": {                "type": "object",                "properties": {                  "PersonId": {                    "type": "integer"                  },                  "FirstName": {                    "type": "string"                  },                  "FamilyName": {                    "type": "string"                  },                  "Email": {                    "type": "string"                  }                }              },              "modifiedAt": {                "type": "string"              },              "modifiedByPerson": {                "type": "object",                "properties": {                  "PersonId": {                    "type": "integer"                  },                  "FirstName": {                    "type": "string"                  },                  "FamilyName": {                    "type": "string"                  },                  "Email": {                    "type": "string"                  }                }              }            },            "required": [              "id",              "relatedItemId",              "itemType",              "comment",              "parentCommentId",              "attachedDocumentIds",              "likesPersonIds",              "createdAt",              "createdByPerson",              "modifiedAt",              "modifiedByPerson"            ]          }        },        "linkedObjectives": {          "type": "array",          "items": {            "type": "object",            "properties": {              "id": {                "type": "integer"              },              "title": {                "type": "string"              },              "summary": {                "type": "string"              },              "category": {                "type": "string"              }            },            "required": [              "id",              "title",              "summary",              "category"            ]          }        },        "appraisalSummary": {          "type": "object",          "properties": {            "managerAppraisalTemplateId": {              "type": "integer"            },            "personAppraisalTemplateId": {              "type": "integer"            },            "internalAppraisalTemplateId": {              "type": "integer"            },            "externalAppraisalTemplateId": {              "type": "integer"            }          }        },        "scores": {          "type": "object",          "properties": {            "score": {              "type": "integer"            },            "overriddenScore": {              "type": "integer"            },            "currentScore": {              "type": "integer"            }          }        },        "createdAt": {          "type": "string"        },        "createdByPerson": {          "type": "object",          "properties": {            "PersonId": {              "type": "integer"            },            "FirstName": {              "type": "string"            },            "FamilyName": {              "type": "string"            },            "Email": {              "type": "string"            }          }        },        "modifiedAt": {          "type": "string"        },        "modifiedByPerson": {          "type": "object",          "properties": {            "PersonId": {              "type": "integer"            },            "FirstName": {              "type": "string"            },            "FamilyName": {              "type": "string"            },            "Email": {              "type": "string"            }          }        },        "contentSettings": {          "type": "object",          "properties": {            "allowLikes": {              "type": "boolean"            },            "allowComments": {              "type": "boolean"            },            "allowImagesInComments": {              "type": "boolean"            },            "allowDocuments": {              "type": "boolean"            }          }        },        "notificationSettings": {          "type": "object",          "properties": {            "push": {              "type": "boolean"            },            "sms": {              "type": "boolean"            },            "email": {              "type": "boolean"            },            "microsoftTeams": {              "type": "boolean"            },            "inApp": {              "type": "boolean"            }          }        },        "isDeleted": {          "type": "boolean"        }      }    },    "differences": {      "type": "array",      "items": {        "type": "object",        "properties": {          "path": {            "type": "string"          },          "oldValue": {            "type": "string"          },          "newValue": {            "type": "string"          }        },        "required": [          "path",          "oldValue",          "newValue"        ]      }    }  }}
```

- [Product Releases](https://knowledge.staffcircle.info/product-releases?hsLang=en#main-content)
  
  
  
  
  
    - [New Features](https://knowledge.staffcircle.info/product-releases?hsLang=en#new-features)
    - [Minor Releases](https://knowledge.staffcircle.info/product-releases?hsLang=en#minor-releases)
- [Comms](https://knowledge.staffcircle.info/comms?hsLang=en#main-content)
  
  
  
  
  
    - [Feeds & Channels](https://knowledge.staffcircle.info/comms?hsLang=en#feeds-channels)
    - [Managing Content](https://knowledge.staffcircle.info/comms?hsLang=en#managing-content)
    - [Content Types](https://knowledge.staffcircle.info/comms?hsLang=en#content-types)
    - [Surveys](https://knowledge.staffcircle.info/comms?hsLang=en#surveys)
    - [Survey Templates](https://knowledge.staffcircle.info/comms?hsLang=en#survey-templates)
    - [Awards & Feedback](https://knowledge.staffcircle.info/comms?hsLang=en#awards-feedback)
    - [Notifications & Alerts](https://knowledge.staffcircle.info/comms?hsLang=en#notifications-alerts)
    - [Dashboards](https://knowledge.staffcircle.info/comms?hsLang=en#dashboards)
    - [Reports](https://knowledge.staffcircle.info/comms?hsLang=en#reports)
    - [FAQ's](https://knowledge.staffcircle.info/comms?hsLang=en#faqs)
- [Integrations](https://knowledge.staffcircle.info/integrations?hsLang=en#main-content)
  
  
  
  
  
    - [Office 365 Integration](https://knowledge.staffcircle.info/integrations?hsLang=en#office-365-integration)
    - [Microsoft Teams](https://knowledge.staffcircle.info/integrations?hsLang=en#microsoft-teams)
    - [One Login Integration](https://knowledge.staffcircle.info/integrations?hsLang=en#one-login-integration)
    - [Microsoft Power Automate Integration](https://knowledge.staffcircle.info/integrations?hsLang=en#microsoft-power-automate-integration)
    - [Microsoft Partners](https://knowledge.staffcircle.info/integrations?hsLang=en#microsoft-partners)
    - [Microsoft Power BI](https://knowledge.staffcircle.info/integrations?hsLang=en#microsoft-power-bi)
    - [HRIS connectors](https://knowledge.staffcircle.info/integrations?hsLang=en#hris-connectors)
    - [IRIS Cascade Connector](https://knowledge.staffcircle.info/integrations?hsLang=en#iris-cascade-connector)
    - [StaffCircle MCPx (model context protocol)](https://knowledge.staffcircle.info/integrations?hsLang=en#staffcircle-mcpx-model-context-protocol)
    - [LMS Connectors](https://knowledge.staffcircle.info/integrations?hsLang=en#lms-connectors)
    - [Zapier](https://knowledge.staffcircle.info/integrations?hsLang=en#zapier)
    - [Workable](https://knowledge.staffcircle.info/integrations?hsLang=en#workable)
    - [Connectors](https://knowledge.staffcircle.info/integrations?hsLang=en#connectors)
    - [E-Sign (Signable)](https://knowledge.staffcircle.info/integrations?hsLang=en#e-sign-signable)
    - [Feedly](https://knowledge.staffcircle.info/integrations?hsLang=en#feedly)
- [Objectives](https://knowledge.staffcircle.info/objectives?hsLang=en#main-content)
  
  
  
  
  
    - [Templates](https://knowledge.staffcircle.info/objectives?hsLang=en#templates)
    - [Competencies](https://knowledge.staffcircle.info/objectives?hsLang=en#competencies)
    - [Priorities](https://knowledge.staffcircle.info/objectives?hsLang=en#priorities)
    - [Reports](https://knowledge.staffcircle.info/objectives?hsLang=en#reports)
    - [Leaderboard/Dashboard](https://knowledge.staffcircle.info/objectives?hsLang=en#leaderboard-dashboard)
    - [FAQ's](https://knowledge.staffcircle.info/objectives?hsLang=en#faqs)
    - [Cascading & Linked Objectives](https://knowledge.staffcircle.info/objectives?hsLang=en#cascading-linked-objectives)
    - [Bulk Amendments & Deletions](https://knowledge.staffcircle.info/objectives?hsLang=en#bulk-amendments-deletions)
- [Reviews](https://knowledge.staffcircle.info/reviews?hsLang=en#main-content)
  
  
  
  
  
    - [Templates](https://knowledge.staffcircle.info/reviews?hsLang=en#templates)
    - [Template Configuration](https://knowledge.staffcircle.info/reviews?hsLang=en#template-configuration)
    - [Feedback Questions](https://knowledge.staffcircle.info/reviews?hsLang=en#feedback-questions)
    - [Reports](https://knowledge.staffcircle.info/reviews?hsLang=en#reports)
    - [Other Settings](https://knowledge.staffcircle.info/reviews?hsLang=en#other-settings)
    - [9 Box Grid](https://knowledge.staffcircle.info/reviews?hsLang=en#9-box-grid)
    - [FAQ's](https://knowledge.staffcircle.info/reviews?hsLang=en#faqs)
- [People & Groups](https://knowledge.staffcircle.info/people-groups?hsLang=en#main-content)
  
  
  
  
  
    - [People](https://knowledge.staffcircle.info/people-groups?hsLang=en#people)
    - [Groups](https://knowledge.staffcircle.info/people-groups?hsLang=en#groups)
    - [Roles](https://knowledge.staffcircle.info/people-groups?hsLang=en#roles)
    - [Custom Fields](https://knowledge.staffcircle.info/people-groups?hsLang=en#custom-fields)
    - [Reports & Dashboards](https://knowledge.staffcircle.info/people-groups?hsLang=en#reports-dashboards)
    - [Detail Sections](https://knowledge.staffcircle.info/people-groups?hsLang=en#detail-sections)
    - [Import & Export](https://knowledge.staffcircle.info/people-groups?hsLang=en#import-export)
    - [Onboarding](https://knowledge.staffcircle.info/people-groups?hsLang=en#onboarding)
    - [FAQ's](https://knowledge.staffcircle.info/people-groups?hsLang=en#faqs)
- [Employee Development](https://knowledge.staffcircle.info/employee-development?hsLang=en#main-content)
  
  
  
  
  
    - [Course Library](https://knowledge.staffcircle.info/employee-development?hsLang=en#course-library)
    - [Development Objectives](https://knowledge.staffcircle.info/employee-development?hsLang=en#development-objectives)
    - [Career Development Reviews](https://knowledge.staffcircle.info/employee-development?hsLang=en#career-development-reviews)
    - [Succession Planning](https://knowledge.staffcircle.info/employee-development?hsLang=en#succession-planning)
    - [FAQ's](https://knowledge.staffcircle.info/employee-development?hsLang=en#faqs)
    - [Skills](https://knowledge.staffcircle.info/employee-development?hsLang=en#skills)
- [Holiday & Absence](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#main-content)
  
  
  
  
  
    - [Absence Policies](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#absence-policies)
    - [Working Patterns](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#working-patterns)
    - [Company Holidays](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#company-holidays)
    - [Absence Types](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#absence-types)
    - [Year End Reset](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#year-end-reset)
    - [Settings](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#settings)
    - [Reports](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#reports)
    - [ARCHIVED CONTENT](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#archived-content)
    - [FAQ's](https://knowledge.staffcircle.info/holiday-absence?hsLang=en#faqs)
- [General Questions](https://knowledge.staffcircle.info/general-questions?hsLang=en#main-content)
  
  
  
  
  
    - [Applications](https://knowledge.staffcircle.info/general-questions?hsLang=en#applications)
- [Custom Insights Module](https://knowledge.staffcircle.info/custom-insights-module?hsLang=en#main-content)
  
  
  
  
  
    - [Microsoft PowerBI](https://knowledge.staffcircle.info/custom-insights-module?hsLang=en#microsoft-powerbi)
- [Skills](https://knowledge.staffcircle.info/skills?hsLang=en#main-content)
  
  
  
  
  
    - [Overview](https://knowledge.staffcircle.info/skills?hsLang=en#overview)
    - [Configuration](https://knowledge.staffcircle.info/skills?hsLang=en#configuration)
    - [Dashboards](https://knowledge.staffcircle.info/skills?hsLang=en#dashboards)
    - [Importers](https://knowledge.staffcircle.info/skills?hsLang=en#importers)
    - [HELPER TOOL ARTICLES](https://knowledge.staffcircle.info/skills?hsLang=en#helper-tool-articles)
- [Organisation & Branding](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#main-content)
  
  
  
  
  
    - [Information](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#information)
    - [Values](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#values)
    - [Departments](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#departments)
    - [Sites](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#sites)
    - [Regions](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#regions)
    - [Branding](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#branding)
    - [Customisation](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#customisation)
    - [BETA Features](https://knowledge.staffcircle.info/organisation-branding?hsLang=en#beta-features)
- [Tasks & Worksheets](https://knowledge.staffcircle.info/tasks-worksheets?hsLang=en#main-content)
  
  
  
  
  
    - [tasks & Worksheets](https://knowledge.staffcircle.info/tasks-worksheets?hsLang=en#tasks-worksheets)
- [E-Sign (Signable)](https://knowledge.staffcircle.info/e-sign-signable?hsLang=en#main-content)
  
  
  
  
  
    - [E-Sign Set Up](https://knowledge.staffcircle.info/e-sign-signable?hsLang=en#e-sign-set-up)
    - [E-sign tags](https://knowledge.staffcircle.info/e-sign-signable?hsLang=en#e-sign-tags)
    - [E-sign reporting](https://knowledge.staffcircle.info/e-sign-signable?hsLang=en#e-sign-reporting)
- [Other Modules](https://knowledge.staffcircle.info/other-modules?hsLang=en#main-content)
  
  
  
  
  
    - [Documents](https://knowledge.staffcircle.info/other-modules?hsLang=en#documents)
    - [New Menu & Search Bar](https://knowledge.staffcircle.info/other-modules?hsLang=en#new-menu-search-bar)
    - [Security Permissions](https://knowledge.staffcircle.info/other-modules?hsLang=en#security-permissions)
    - [FAQ](https://knowledge.staffcircle.info/other-modules?hsLang=en#faq)
- [FAQ's](https://knowledge.staffcircle.info/faqs?hsLang=en#main-content)
  
  
  
  
  
    - [People](https://knowledge.staffcircle.info/faqs?hsLang=en#people)
    - [Other](https://knowledge.staffcircle.info/faqs?hsLang=en#other)
    - [Product Specification](https://knowledge.staffcircle.info/faqs?hsLang=en#product-specification)
- [Guidance](https://knowledge.staffcircle.info/guidance?hsLang=en)
- [Awards & Feedback](https://knowledge.staffcircle.info/awards-feedback?hsLang=en)
- [Google Integration](https://knowledge.staffcircle.info/google-integration?hsLang=en)
- [Product Specification](https://knowledge.staffcircle.info/product-specification?hsLang=en#main-content)
  
  
  
  
  
    - [Comms and Culture](https://knowledge.staffcircle.info/product-specification?hsLang=en#comms-and-culture)
    - [Performance Management](https://knowledge.staffcircle.info/product-specification?hsLang=en#performance-management)
    - [HR Operations](https://knowledge.staffcircle.info/product-specification?hsLang=en#hr-operations)
    - [Common Features](https://knowledge.staffcircle.info/product-specification?hsLang=en#common-features)
    - [Core Functionality](https://knowledge.staffcircle.info/product-specification?hsLang=en#core-functionality)
- [Templates](https://knowledge.staffcircle.info/templates?hsLang=en#main-content)
  
  
  
  
  
    - [Review Question Templates](https://knowledge.staffcircle.info/templates?hsLang=en#review-question-templates)
    - [Objective Templates](https://knowledge.staffcircle.info/templates?hsLang=en#objective-templates)
    - [Survey Templates](https://knowledge.staffcircle.info/templates?hsLang=en#survey-templates)
    - [Skill Set Templates](https://knowledge.staffcircle.info/templates?hsLang=en#skill-set-templates)
    - [E-Sign Templates](https://knowledge.staffcircle.info/templates?hsLang=en#e-sign-templates)
- [StaffCircle API](https://knowledge.staffcircle.info/staffcircle-api?hsLang=en#main-content)
  
  
  
  
  
    - [Webhooks](https://knowledge.staffcircle.info/staffcircle-api?hsLang=en#webhooks)
    - [REST APIs](https://knowledge.staffcircle.info/staffcircle-api?hsLang=en#rest-apis)
    - [API Security](https://knowledge.staffcircle.info/staffcircle-api?hsLang=en#api-security)
    - [Surveys](https://knowledge.staffcircle.info/staffcircle-api?hsLang=en#surveys)
    - [Articles](https://knowledge.staffcircle.info/staffcircle-api?hsLang=en#articles)
- [Service Policy Documents](https://knowledge.staffcircle.info/service-policy-documents?hsLang=en)
- [HR Operations Module](https://knowledge.staffcircle.info/hr-operations-module?hsLang=en#main-content)
  
  
  
  
  
    - [People and Groups](https://knowledge.staffcircle.info/hr-operations-module?hsLang=en#people-and-groups)
- [Employee Engagement Module](https://knowledge.staffcircle.info/employee-engagement-module?hsLang=en#main-content)
  
  
  
  
  
    - [Realtime Feedback](https://knowledge.staffcircle.info/employee-engagement-module?hsLang=en#realtime-feedback)
    - [Surveys](https://knowledge.staffcircle.info/employee-engagement-module?hsLang=en#surveys)
- [Troubleshooting](https://knowledge.staffcircle.info/troubleshooting?hsLang=en#main-content)
  
  
  
  
  
    - [Access & Permissions](https://knowledge.staffcircle.info/troubleshooting?hsLang=en#access-permissions)
    - [Passwords and Password Reset](https://knowledge.staffcircle.info/troubleshooting?hsLang=en#passwords-and-password-reset)
    - [Holidays & Absence](https://knowledge.staffcircle.info/troubleshooting?hsLang=en#holidays-absence)
- [Security & Access](https://knowledge.staffcircle.info/security-access?hsLang=en#main-content)
  
  
  
  
  
    - [2FA](https://knowledge.staffcircle.info/security-access?hsLang=en#2fa)

- [StaffCircle University](https://www.staffcircle.com/university)
- [StaffCircle Resources](https://www.staffcircle.com/resources/)

[![Chill listening crop-3](https://knowledge.staffcircle.info/hs-fs/hubfs/staffCircle_logo_trans_icon-3.png?width=24&height=24&name=staffCircle_logo_trans_icon-3.png "Chill listening crop-3")](http://staffcircle.com)

help.staffcircle.com

Copyright © 2026, StaffCircle Ltd