Retrieve a review
GET/performance/{connection_id}/review/{id}
Parameters
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
idstring required
ID of the Review
Returns
idstring
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
user_idstring required
the HR Employee being reviewed (reference to HrisEmployee)
reviewer_user_idstring
the HR Employee that wrote this review (reference to HrisEmployee)
cycle_idstring
pointer to the Performance Cycle object
template_identifierstring
id of the review template/form this review is based on
type enum
Valid values:
"SELF"
"MANAGER"
"PEER"
"UPWARD"
"OTHER"
ratingnumber
the overall rating/score of this review
rating_maximumnumber
the maximum possible rating/score on the provider's scale
rating_descriptionstring
label of the rating on the provider's scale (e.g. "Exceeds expectations")
commentstring
the overall/summary comment of this review
is_acknowledgedboolean
whether the reviewee acknowledged this review
submitted_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
completed_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
const options = {
method: 'GET',
url: 'https://api.unified.to/performance/5de520f96e439b002043d8dc/review/5de520f96e439b002043d8d8',
headers: {
authorization: 'bearer .....'
},
params: {
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know