List App Store Versions
asc_list_app_store_versionsRetrieve both released and in-progress App Store versions for a specific app. Supports pagination to fetch all versions.
Instructions
List App Store versions for an app (both released and in-progress).
Args:
appId (string, required): The App Store Connect app ID
limit (number): Maximum number of versions to return (default 20, max 200)
nextUrl (string, optional): Pagination URL returned by a previous call
Returns: { "count": number, "items": [ { "id": string, "versionString": string, // e.g. "1.3.3" "appStoreState": string, // e.g. "READY_FOR_SALE", "IN_REVIEW", "PREPARE_FOR_SUBMISSION" "platform": string, // e.g. "IOS" "releaseType": string, // e.g. "MANUAL", "AFTER_APPROVAL", "SCHEDULED" "createdDate": string // ISO 8601 } ], "nextUrl": string | undefined }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The App Store Connect app ID to list App Store versions for. | |
| limit | No | Maximum number of items to return (default 20, max 200). | |
| nextUrl | No | The nextUrl value returned by a previous call to this tool. Pass it back unchanged to fetch the next page. Omit for the first page. |