List Version Localizations
asc_list_version_localizationsRetrieve localized metadata for an App Store version, including description, keywords, and what's new text for each locale.
Instructions
List per-locale App Store version metadata (description, keywords, what's new, etc.) for an App Store version.
Args:
versionId (string, required): The App Store version ID
limit (number): Maximum number of localizations to return (default 20, max 200)
nextUrl (string, optional): Pagination URL returned by a previous call
Returns: { "count": number, "items": [ { "id": string, // pass to asc_update_version_localization "locale": string, // e.g. "ja", "en-US" "description": string, "keywords": string, "whatsNew": string, "promotionalText": string, "supportUrl": string, "marketingUrl": string } ], "nextUrl": string | undefined }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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. | |
| versionId | Yes | The App Store version ID to list localizations for. |