List App Info Localizations
asc_list_app_info_localizationsList all localized app metadata (name, subtitle, privacy policy) for an App Store Connect app, covering both live and draft versions.
Instructions
List per-locale app-level metadata (name, subtitle, privacy policy URL) across all appInfos of an app. An app usually has two appInfos: the live one and the one currently being edited (distinguished by appInfoState).
Args:
appId (string, required): The App Store Connect app ID
Returns: { "count": number, "items": [ { "id": string, // pass to asc_update_app_info_localization "appInfoId": string, "appInfoState": string, // e.g. "READY_FOR_DISTRIBUTION", "PREPARE_FOR_SUBMISSION" "locale": string, "name": string, "subtitle": string, "privacyPolicyUrl": string } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The App Store Connect app ID to list app info localizations for. |