---
title: "How to work with reviews"
canonical: "https://support.appfire.com/space/SUPPORT/89146950/How%20to%20work%20with%20reviews"
format: markdown
---
> Macro (div)
> 
> ### On this page
> 
> > Macro (toc)

# Summary

The article contains some examples of review actions. See also [How to transition or delete multiple reviews](https://appfire.atlassian.net/wiki/spaces/SUPPORT/pages/89147384).

# Create review

To create a review in a specific state and allow reviewers to join:

```
crucible --action createReview --project CR --name "Release retrospective" --allowReviewersToJoin --state Review
Review CR-9 created.
```

# Get transition list

To make a valid transition from the current review state:

```
crucible --action getTransitionList --review CR-9
2 transitions in list
"Name", "Transition"
"Close","action:closeReview"
"Abandon","action:abandonReview"
```

# Transition review

To close the review:

```
crucible --action transitionReview --review CR-9 --state Close
Review CR-9 transitioned to Closed.
```