mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 23:55:51 +03:00
[GH-ISSUE #75] Add App Pricing & Availability management #19
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#19
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 24, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/75
Summary
Add App Pricing & Availability management (price points, schedules, territories). ASC currently has no app pricing or availability tooling.
Current State (verified)
Repo search for app price schedules, price points, territories, app availability returns no matches.
API Endpoints (App Store Connect OpenAPI)
POST /v1/appPriceSchedulesGET /v1/appPriceSchedules/{id}GET /v1/appPriceSchedules/{id}/automaticPricesGET /v1/appPriceSchedules/{id}/manualPricesGET /v1/appPriceSchedules/{id}/baseTerritoryGET /v1/apps/{id}/appPricePointsGET /v3/appPricePoints/{id}GET /v3/appPricePoints/{id}/equalizationsGET /v1/territoriesAvailability (v2)
POST /v2/appAvailabilitiesGET /v2/appAvailabilities/{id}GET /v2/appAvailabilities/{id}/territoryAvailabilitiesGET /v1/apps/{id}/appAvailabilityV2Proposed CLI
Implementation Plan
internal/asc/pricing.gocmd/pricing.gopricingcommand group andavailabilitysubcommands.Acceptance Criteria
@rudrankriyam commented on GitHub (Jan 24, 2026):
@cursor
Implementation Guide
Codebase Context
This feature covers App Pricing and Availability - price schedules, price points, territories, and app availability management.
File Structure
1.
internal/asc/pricing.go(~200-250 lines)2.
internal/asc/client_pricing.go(~150-200 lines)3.
internal/asc/pricing_output.go(~100-150 lines)4.
cmd/pricing.go(~300-350 lines)5. Register in
cmd/commands.goAdd
PricingCommand()to RootCommand().SubcommandsAPI Endpoints Reference
CLI Usage Examples
Testing
make test && make lint@cursor[bot] commented on GitHub (Jan 24, 2026):
Summary:
asc pricingCLI with territories, price points, schedule, and availability subcommands plus validations.Tests:
make testmake lint