list_app_store_version_localizations
Retrieve all language-specific metadata for an App Store version to manage localized app store listings and descriptions.
Instructions
Get all localizations for a specific app store version
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appStoreVersionId | Yes | The ID of the app store version | |
| limit | No | Maximum number of localizations to return (default: 100) |
Implementation Reference
- src/handlers/localizations.ts:52-69 (handler)The core handler function that validates the input parameters and makes an authenticated GET request to the App Store Connect API endpoint '/appStoreVersionLocalizations' to retrieve the list of localizations for the specified app store version.
async listAppStoreVersionLocalizations(args: { appStoreVersionId: string; limit?: number; }): Promise<ListAppStoreVersionLocalizationsResponse> { const { appStoreVersionId, limit = 100 } = args; validateRequired(args, ['appStoreVersionId']); const params: Record<string, any> = { limit: sanitizeLimit(limit), 'filter[appStoreVersion]': appStoreVersionId }; return this.client.get<ListAppStoreVersionLocalizationsResponse>( '/appStoreVersionLocalizations', params ); } - src/types/localizations.ts:25-37 (schema)TypeScript interface defining the structure of the API response from listing app store version localizations.
export interface ListAppStoreVersionLocalizationsResponse { data: AppStoreVersionLocalization[]; links?: { self: string; next?: string; }; meta?: { paging: { total: number; limit: number; }; }; }