mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 23:55:51 +03:00
[GH-ISSUE #191] Add App Store Review Details CLI support #54
Labels
No labels
bug
bug
documentation
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/App-Store-Connect-CLI#54
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rudrankriyam on GitHub (Jan 26, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/191
Overview
Add CLI support for App Store Review Details (not TestFlight) so we can set contact info, demo account info, and review notes for App Review.
Docs (API)
Scope (Endpoints)
GET /v1/appStoreVersions/{id}/appStoreReviewDetailGET /v1/appStoreReviewDetails/{id}POST /v1/appStoreReviewDetailsPATCH /v1/appStoreReviewDetails/{id}GET /v1/appStoreVersions/{id}/relationships/appStoreReviewDetail(optional, for linkage)Required Attributes (from docs)
Required for App Review:
Optional:
Proposed CLI
Top-level group (suggested):
asc review-details <subcommand> [flags]Subcommands:
review-details get --id REVIEW_DETAIL_IDreview-details get --version-id VERSION_IDreview-details create --version-id VERSION_ID --contact-first-name ... --contact-last-name ... --contact-email ... --contact-phone ... --demo-account-required true|false [--demo-account-name ... --demo-account-password ...] [--notes ...]review-details update --id REVIEW_DETAIL_ID [flags to update fields]Flag Patterns
Common:
--output json|table|markdown--prettyCreate-specific:
--version-id(required)--contact-first-name,--contact-last-name,--contact-email,--contact-phone(required)--demo-account-required(required)--demo-account-name,--demo-account-password(required when demo account is needed)--notes(optional)Update-specific:
--id(required)Output
--output table/markdownfor human-friendly displayAcceptance Criteria
asc review-details --helpis available--version-idpath)Tests
Manual Test Plan (using real apps)
asc apps --paginate→ pickAPP_IDasc versions list --app APP_ID --paginate→ pickVERSION_IDasc review-details create --version-id VERSION_ID \ --contact-first-name "First" --contact-last-name "Last" \ --contact-email "you@example.com" --contact-phone "+1-555-555-5555" \ --demo-account-required false --notes "Review notes"asc review-details get --version-id VERSION_IDasc review-details get --id REVIEW_DETAIL_IDasc review-details update --id REVIEW_DETAIL_ID --notes "Updated notes"Implementation Notes
cmd/review_details.gointernal/asc/review_details.gowith types + client methodsinternal/asc/output_review_details.gocmd/root.gocmd/testflight_review.gofor validation and updates@rudrankriyam commented on GitHub (Jan 27, 2026):
Implemented App Store review details + attachments in main.