Update Version Localization
asc_update_version_localizationUpdates App Store version metadata for a specific locale by passing only the fields to change. Use for editing localized description, keywords, release notes, promotional text, or URLs.
Instructions
Update per-locale App Store version metadata. Only the fields you pass are updated; omitted fields are left unchanged.
Note: promotionalText can be updated anytime; other fields (description, keywords, whatsNew, supportUrl, marketingUrl) can only be updated while the version is in an editable state (e.g. PREPARE_FOR_SUBMISSION, DEVELOPER_REJECTED, REJECTED).
Args:
localizationId (string, required): The App Store version localization ID (from asc_list_version_localizations)
description (string, optional)
keywords (string, optional): comma-separated
whatsNew (string, optional)
promotionalText (string, optional)
supportUrl (string, optional)
marketingUrl (string, optional)
At least one of the optional fields must be provided.
Returns: { "id": string, "locale": string, "description": string, "keywords": string, "whatsNew": string, "promotionalText": string, "supportUrl": string, "marketingUrl": string }
Error Handling:
Returns an error if no updatable field is provided
Returns an error if the version is not in an editable state for the fields being changed
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | No | Comma-separated keywords for this locale. | |
| whatsNew | No | "What's New" release notes for this locale. | |
| supportUrl | No | Support URL for this locale. | |
| description | No | App description for this locale. | |
| marketingUrl | No | Marketing URL for this locale. | |
| localizationId | Yes | The App Store version localization ID to update. | |
| promotionalText | No | Promotional text for this locale. |