ContributionsMost RecentMost LikesSolutionsRe: Detect review template changeI mean to detect when user are changing the template. Currently when the review is created, a trigger is activated ( review created), from this point you cannot get any updates related review till the point when review is changing the phase, when is too late to get updates related review template. Detect review template change Hello, Is there possibility to detect or run trigger when user change review template? Thank you for support Create System Message from JSON API Hello, Is there a possibility to add a comment to review to be displayed as System Message? Currently I use the ReviewService.createReviewComment method but is displayed in the User Messages section from review chat. Why we need this? To add comments from triggers side as automated process validation. [ { "command": "SessionService.authenticate", "args": { "login": "{{collab_dev_admin_user}}", "ticket": "{{collab_dev_admin_token}}" } }, { "command": "ReviewService.createReviewComment", "args": { "reviewId" : {{collab_dev_reviewID}}, "comment" : "This is a System message", } } ] Thank you for support. Unable to add checklist via Java API Hello, I have issues with creating an API request to add / remove checklist from review. Have tried using same from documentation but I get NullPointerException Thank you for support [ { "command": "SessionService.authenticate", "args": { "login": "{{collab_dev_admin_user}}", "ticket": "{{collab_dev_admin_token}}" } }, { "command": "ReviewService.addChecklist", "args": { "reviewId": 123, "id": 181 } } ] Solved