mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 23:55:51 +03:00
[GH-ISSUE #46] Add beta-groups get/update/delete #7
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#7
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 23, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/46
Summary
Add missing beta group lifecycle operations: read detail, update attributes, and delete.
API endpoints
GET /v1/betaGroups/{id}(read) — https://developer.apple.com/documentation/appstoreconnectapi/read_beta_group_informationPATCH /v1/betaGroups/{id}(update) — https://developer.apple.com/documentation/appstoreconnectapi/modify_a_beta_groupDELETE /v1/betaGroups/{id}(delete) — https://developer.apple.com/documentation/appstoreconnectapi/delete_a_beta_groupUpdate attributes (validate with API)
namepublicLinkEnabledpublicLinkLimitEnabledpublicLinkLimitfeedbackEnabledisInternalGrouphasAccessToAllBuildsCLI
asc beta-groups get --id "GROUP_ID"asc beta-groups update --id "GROUP_ID" [--name ...] [--public-link-enabled ...] [--public-link-limit ...] [--public-link-limit-enabled ...] [--feedback-enabled ...] [--internal ...] [--all-builds ...]asc beta-groups delete --id "GROUP_ID" --confirmOutput
--output table|markdown;--prettyfor JSON.Tests
internal/ascclient tests for GET/PATCH/DELETE@rudrankriyam commented on GitHub (Jan 23, 2026):
Implemented in PR #53 - beta-groups get, update, and delete commands are now available.