# Create Review Stage

Source: https://www.digiparser.com/docs/api/createReviewStage

# Create Review Stage

Server URL`loading...`

POST

/`api`/`v1`/`parsers`/`{parserId}`/`review-stages`

Send

Authorization

Path

Body

Create a review stage. Public API V2 supports simple rules only.

## [Authorization](#authorization)

`bearerAuth`

authorization<token>

Your API key. Include it directly in the Authorization header as the API key value (e.g., 'authorization: your-api-key-here')

In: `header`

## [Path Parameters](#path-parameters)

parserId\*string

The ID of the parser

Format`uuid`

## [Request Body](#request-body)

`application/json`

name?string

reviewerInstructions?string|null

Optional plain-text guidance shown to the assigned reviewer. Set to null to clear it.

Length`length <= 500`

position?integer

Range`1 <= value`

reviewType?string

Value in`"mandatory" | "conditional"`

reviewerId?string

Format`uuid`

rules?array<SimpleReviewRuleRequest\>

\[key: string\]?never

## [Response Body](#response-body)

### 201

`application/json`

### 400

`application/json`

### 404

`application/json`

cURL

JavaScript

Go

Python

Java

C#

```
curl -X POST "https://api.digiparser.com/api/v1/parsers/d1458cd7-8692-488f-8b3f-0fddade05f9c/review-stages" \  -H "Content-Type: application/json" \  -d '{}'
```

201400404

```
{
  "id": "string",
  "name": "Manager Approval",
  "reviewerInstructions": "string",
  "position": 1,
  "reviewType": "mandatory",
  "reviewer": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "name": "Jane Reviewer",
    "email": "[email protected]"
  },
  "rules": [
    {
      "id": "string",
      "type": "simple",
      "field": "Total Amount",
      "condition": "extracted_value",
      "operator": "equals",
      "value": "string",
      "name": "string",
      "editable": true
    }
  ]
}
```

```
{
  "error": true,
  "message": "Parser ID mismatch"
}
```

```
{
  "error": true,
  "message": "Document not found",
  "notFound": [
    {
      "type": "documentId",
      "value": "string"
    }
  ]
}
```

[

List Review Stages GET

List review stages configured for a parser.

](/docs/api/listReviewStages)[

Get Review Stage GET

Next Page

](/docs/api/getReviewStage)