---
title: "Create Dynamic Config Review"
method: POST
path: "/console/v1/dynamic_configs/{id}/reviews"
tags: ["Dynamic Configs"]
---

# Create Dynamic Config Review

`POST /console/v1/dynamic_configs/{id}/reviews`

## Path parameters

- `id` string, required

## Request body

- CreateDCReviewRequestDto — Request body for POST /console/v1/dynamic_configs/:id/reviews
  - `description` string, required — Human-readable description of the proposed change.
  - `reviewer_ids` string[] — User IDs to request review from.
  - `reviewer_group_ids` string[] — Reviewer group IDs to request review from.
  - `change` object, required — The proposed change. Provide exactly one change slot: the content bundle (`rules` and/or `default_value`), one verb/metadata field, or `restore`.
    - `rules` object[] — Proposed full rule set for the dynamic config. Same shape as the DC update contract.
      - `name` string, required — The name of this rule.
      - `passPercentage` number — Of the users that meet the conditions of this rule, what percent should return true.
      - `conditions` object[], required — An array of Condition objects.
        - `targetValue` union
          - string[]
          - number[]
          - string
          - number
        - `operator` string
        - `field` string, nullable
        - `customID` string, nullable
        - `type` 'app_version' | 'browser_name' | 'browser_version' | 'country' | 'custom_field' | 'email' | 'environment_tier' | 'fails_gate' | 'fails_segment' | 'ip_address' | 'locale' | 'os_name' | 'os_version' | 'passes_gate' | 'passes_segment' | 'public' | 'time' | 'unit_id' | 'user_id' | 'user_agent' | 'url' | 'javascript' | 'device_model' | 'target_app' | 'experiment_group', required
      - `environments` string[], nullable
      - `id` string — The Statsig ID of this rule.
      - `baseID` string — The base ID of this rule, i.e. without any added metadata. Will remain the exact same throughout
      - `returnValue` object
      - `completedAutomatedRollouts` object[] — Read-only: Automated rollout phases that have already completed.
        - `time` number
        - `passPercent` number, required
      - `pendingAutomatedRollouts` object[] — Read-only: Automated rollout phases that are scheduled but not yet complete.
        - `time` number
        - `passPercent` number, required
      - `returnValueJson5` string
      - `variants` object[]
        - `id` string
        - `name` string, required
        - `passPercentage` number, required
        - `returnValue` object
        - `returnValueJson5` string
    - `default_value` object — Proposed default value for the dynamic config as a JSON object.
    - `is_enabled` boolean — Proposed enabled state for the dynamic config. An explicit target, not a toggle.
    - `is_archived` boolean — Proposed archived state for the dynamic config. `true` archives, `false` unarchives.
    - `delete` true — Delete the dynamic config. Set to `true`.
    - `resalt` true — Re-randomize the dynamic config's salt. Set to `true`.
    - `disable_reviews_locally` true — Stop requiring review on this dynamic config. Set to `true`.
    - `restore` object — Revert to a prior committed snapshot (review type `rules`).
      - `snapshot_id` string, required — Snapshot ID (SUID) of the committed historical state to restore.
    - `release_pipeline_id` string, nullable — Set or clear the dynamic config's release pipeline (review type `update_release_pipeline`). Pass a pipeline ID to attach, or `null` to detach.
    - `id_type` string — Change the dynamic config's primary unit ID type (review type `edit_id_type`).
    - `allow_self_approval` boolean — Whether this dynamic config's reviews may be self-approved (review type `update_allow_self_approval`).
    - `target_app_ids` string[] — Replace the dynamic config's target applications (review type `update_target_applications`).
    - `allowed_reviewers` object — Set who may review this dynamic config (review type `allowed_reviewers`).
      - `user_ids` string[] — User IDs allowed to review. Replaces the existing set.
      - `group_ids` string[] — Reviewer group IDs allowed to review. Replaces the existing set.

## Response `201`

---

[API](https://skmtc.net/statsig/apis/console-api.md) · [All operations](https://skmtc.net/statsig/apis/console-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/statsig/console-api/versions/3189f450c93b/schema)
