[PR #391] [MERGED] Add app-infos list command to show app info IDs #493

Closed
opened 2026-02-26 22:31:12 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/391
Author: @rudrankriyam
Created: 2/1/2026
Status: Merged
Merged: 2/1/2026
Merged by: @rudrankriyam

Base: mainHead: feature/app-infos-list


📝 Commits (1)

  • 43b5c7f Add app-infos list command to show app info IDs

📊 Changes

2 files changed (+89 additions, -0 deletions)

View changed files

internal/cli/apps/app_infos.go (+88 -0)
📝 internal/cli/registry/registry.go (+1 -0)

📄 Description

Summary

  • Adds a new app-infos command group with a list subcommand
  • Lists all app info records for an app, showing ID, state, age rating, and other attributes
  • Supports --app flag (or ASC_APP_ID env) and --output format (json, table, markdown)

Why

When an app has multiple app info records (e.g., different platforms or states), commands like app-info get --include fail with "multiple app infos found" errors. Users need a way to discover the specific app info ID they need. This command solves that by listing all app info records with their IDs and states.

Usage

# List all app info records for an app
asc app-infos list --app "APP_ID"

# Output as table for easier reading
asc app-infos list --app "APP_ID" --output table

# Use environment variable
ASC_APP_ID=123456 asc app-infos list

Test plan

  • Verify go build . succeeds
  • Test asc app-infos list --app <id> returns app info records
  • Test --output table and --output markdown formats work
  • Test error handling when --app is missing

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/391 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 2/1/2026 **Status:** ✅ Merged **Merged:** 2/1/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `feature/app-infos-list` --- ### 📝 Commits (1) - [`43b5c7f`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/43b5c7f3e38dc20229da798f544c79f571a9ef87) Add app-infos list command to show app info IDs ### 📊 Changes **2 files changed** (+89 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `internal/cli/apps/app_infos.go` (+88 -0) 📝 `internal/cli/registry/registry.go` (+1 -0) </details> ### 📄 Description ## Summary - Adds a new `app-infos` command group with a `list` subcommand - Lists all app info records for an app, showing ID, state, age rating, and other attributes - Supports `--app` flag (or `ASC_APP_ID` env) and `--output` format (json, table, markdown) ## Why When an app has multiple app info records (e.g., different platforms or states), commands like `app-info get --include` fail with "multiple app infos found" errors. Users need a way to discover the specific app info ID they need. This command solves that by listing all app info records with their IDs and states. ## Usage ```bash # List all app info records for an app asc app-infos list --app "APP_ID" # Output as table for easier reading asc app-infos list --app "APP_ID" --output table # Use environment variable ASC_APP_ID=123456 asc app-infos list ``` ## Test plan - [ ] Verify `go build .` succeeds - [ ] Test `asc app-infos list --app <id>` returns app info records - [ ] Test `--output table` and `--output markdown` formats work - [ ] Test error handling when `--app` is missing --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 22:31:12 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/App-Store-Connect-CLI#493
No description provided.