mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 23:55:51 +03:00
[GH-ISSUE #252] Apps: add get/update CLI support for /v1/apps/{id} #80
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#80
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 28, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/252
Overview
CLI only exposes
asc appslist, but OpenAPI includes app detail and update endpoints. Add CLI support forGET /v1/apps/{id}andPATCH /v1/apps/{id}.Scope (OpenAPI endpoints)
GET /v1/apps/{id}PATCH /v1/apps/{id}Proposed CLI
Extend
appswithout breaking existing behavior:asc apps(keep list)asc apps list(alias for list)asc apps get --id APP_IDasc apps update --id APP_ID [--bundle-id ...] [--primary-locale ...]Examples
asc apps get --id "APP_ID"asc apps update --id "APP_ID" --bundle-id "com.example.app"asc apps update --id "APP_ID" --primary-locale "en-US"Flag patterns
Common:
--output,--prettyResource-specific:
--id(app ID)--bundle-id--primary-localeOutput
--prettyfor JSON--output table/markdown(list only)Acceptance criteria
asc apps getreturns the app by IDasc apps updateupdates bundleId/primaryLocale as supportedasc appslist behavior remains intact--nextvalidation unchanged for listTests
Implementation notes
GetApp,UpdateAppcmd/apps.goto support subcommands while preserving list alias@rudrankriyam commented on GitHub (Jan 28, 2026):
Tracking in PR #255 (Fixes #252).