# AddReview Adds a review (approve/decline/missing) to a given process Endpoint: POST /v1/processes/{process_id}/reviews/ Version: 1.0.0 ## Path parameters: - `process_id` (string, required) ID of the process in where the review is being added. Required. ## Request fields (application/json): - `process_id` (string) ID of the process in where the review is being added. Required. - `refund_override` (object) Refund override - `refund_override.amount` (object) - `refund_override.amount.currency_code` (string) - `refund_override.reason` (string) - `refund_override.requested` (boolean) - `reviews` (array) Review data. Required. - `reviews.created_by_user` (string) User that performed the review. Required. TODO: should be created_by protolint:disable:next FIELD_NAMES_EXCLUDE_PREPOSITIONS - `reviews.line_item_id` (string) REVER ID of the line item of the return process (return items) to be reviewed. Required. - `reviews.reject_reason` (string) Reason for rejecting the line item. Required if status == DECLINED - `reviews.show_reject_reason` (boolean) Should show reject reason to the user - `reviews.status` (string) Review status. Required. the list of values is [APPROVED, DECLINED, MISSING]