get_app_store_version_localization
Retrieve detailed localization data for a specific App Store version to manage app metadata across different languages and regions.
Instructions
Get detailed information about a specific app store version localization
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| localizationId | Yes | The ID of the app store version localization |
Implementation Reference
- src/handlers/localizations.ts:71-81 (handler)The core handler function that executes the tool logic. It validates the input, constructs the API endpoint, and calls the AppStoreConnectClient to fetch the specific app store version localization by ID.
async getAppStoreVersionLocalization(args: { localizationId: string; }): Promise<AppStoreVersionLocalizationResponse> { const { localizationId } = args; validateRequired(args, ['localizationId']); return this.client.get<AppStoreVersionLocalizationResponse>( `/appStoreVersionLocalizations/${localizationId}` ); }