update_listing
Update app store listing text for a specific locale, creating the listing if it doesn't exist. Validate changes first using the validate_only flag to prevent errors.
Instructions
Update the store listing text for one locale. Only the fields you pass are changed, so you can edit just the title without touching the description. Creates the listing if that locale does not exist yet. Google's limits: title 30 characters, short description 80, full description 4000. Use validate_only first to check the change without committing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | App name shown on the store, max 30 characters | |
| video | No | YouTube URL of the promo video. Pass an empty string to remove it. | |
| language | Yes | BCP-47 language tag of the listing, e.g. 'en-US' or 'de-DE' | |
| package_name | No | App package name, e.g. 'com.acme.app' (defaults to GOOGLE_PLAY_PACKAGE_NAME) | |
| validate_only | No | Dry run: validate the change and discard the edit instead of committing it | |
| full_description | No | Full store description, max 4000 characters | |
| short_description | No | Tagline shown above the fold, max 80 characters | |
| changes_not_sent_for_review | No | Commit without sending the changes for review (only for apps where changes are reviewed separately) |