mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 23:55:51 +03:00
[GH-ISSUE #204] Add Featuring Nominations CLI support #64
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#64
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/204
Originally assigned to: @rudrankriyam on GitHub.
Overview
Add CLI support for Featuring Nominations so users can submit and manage nominations for editorial featuring consideration.
Docs (API)
Scope (Endpoints)
From docs:
POST /v1/nominationsGET /v1/nominationsGET /v1/nominations/{id}PATCH /v1/nominations/{id}DELETE /v1/nominations/{id}Proposed CLI
Top‑level group:
asc nominations <subcommand> [flags]Subcommands:
nominations list [--app APP_ID] [--status STATUS] [--type TYPE]nominations get --id NOMINATION_IDnominations create --app APP_ID --type TYPE --description "..." [--version VERSION_ID] [--countries "US,GB"] [--publish-date YYYY-MM-DD] [--platforms "IOS"]nominations update --id NOMINATION_ID [flags]nominations delete --id NOMINATION_ID --confirmFlags
Common:
--output json|table|markdown--pretty--limit,--next,--paginate--sort(if supported by API)Create/update:
--type(enum)--description--version,--countries,--publish-date,--platformsDelete:
--confirmrequiredOutput
Acceptance Criteria
asc nominations --helpavailableTests
Manual Test Plan (using real apps)
asc apps --paginate→APP_IDasc nominations create --app APP_ID --type APP_UPDATE --description "Major update" --version VERSION_IDasc nominations list --app APP_ID --output tableasc nominations get --id NOMINATION_IDasc nominations update --id NOMINATION_ID --description "Updated description"asc nominations delete --id NOMINATION_ID --confirmImplementation Notes
cmd/nominations.go,internal/asc/client_nominations.go, and output helpers.cmd/root.go.--publish-date.@rudrankriyam commented on GitHub (Jan 27, 2026):
Closed as fixed by #226. PRs: https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/226