Create App Store Version
asc_create_app_store_versionCreate a new App Store version for an app to start preparing the next release. Specify the app ID, version string, and platform.
Instructions
Create a new App Store version (e.g. to start preparing the next release) for an app.
Args:
appId (string, required): The App Store Connect app ID
versionString (string, required): The version number, e.g. "1.3.4"
platform (string): "IOS" (default) | "MAC_OS" | "TV_OS" | "VISION_OS"
Returns: { "versionId": string, "versionString": string, "appStoreState": string // typically "PREPARE_FOR_SUBMISSION" right after creation }
Error Handling:
Returns an error if a version with the same versionString already exists for the app
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The App Store Connect app ID to create a new version for. | |
| platform | No | Platform for the new version (default IOS). | IOS |
| versionString | Yes | The version number to create, e.g. '1.3.4'. |