Skip to main content
The review command manages App Store review submissions, including review details and attachments.

Usage

asc review <subcommand> [flags]

Subcommands

List submissions

List App Store review submissions:
asc review list --app APP_ID
asc review list --app APP_ID --filter "state==IN_REVIEW"

Get submission

Get details for a specific submission:
asc review get --submission-id SUBMISSION_ID

Cancel submission

Cancel a pending submission:
asc review cancel --submission-id SUBMISSION_ID

Manage review details

Update review information:
asc review details update \
  --version-id VERSION_ID \
  --contact-email support@example.com \
  --contact-phone "+1-555-0100"

Manage attachments

Add attachments to review submissions:
asc review attachments create \
  --submission-id SUBMISSION_ID \
  --file /path/to/demo-video.mp4

List flags

--app
string
required
App ID to list submissions for
--filter
string
Filter submissions by stateStates: WAITING_FOR_REVIEW, IN_REVIEW, PENDING_DEVELOPER_RELEASE, APPROVED, REJECTED
--output
string
Output format: json, table, or markdown

Review states

StateDescription
WAITING_FOR_REVIEWSubmission is queued for review
IN_REVIEWApp is currently being reviewed
PENDING_DEVELOPER_RELEASEApproved, waiting for developer release
APPROVEDApproved and released
REJECTEDRejected by App Review

Example workflows

Check review status

asc review list --app 123456789 --filter "state==IN_REVIEW"

Cancel a submission

# List submissions
asc review list --app 123456789

# Cancel specific submission
asc review cancel --submission-id SUBMISSION_ID

Update review contact info

asc review details update \
  --version-id VERSION_ID \
  --contact-email support@example.com \
  --contact-phone "+1-555-0100" \
  --demo-account-name "demo@example.com" \
  --demo-account-password "password123"

Monitor review progress

# Check every hour
while true; do
  asc review list --app 123456789 --output table
  sleep 3600
done

Submit command

Submit for App Store review

Reviews command

Manage customer reviews

Submission guide

Complete submission guide