apple_list_version_localizations
Retrieve all language-specific localizations for an App Store version to manage multilingual app listings and metadata.
Instructions
List all localizations for a version
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| versionId | Yes | App Store Version ID |
Implementation Reference
- src/apple/tools.ts:184-186 (handler)The handler function that executes the request to list version localizations.
handler: async (client, args) => { return client.request(`/appStoreVersions/${args.versionId}/appStoreVersionLocalizations`); }, - src/apple/tools.ts:181-183 (schema)The input schema for the tool defining the required versionId.
schema: z.object({ versionId: z.string().describe('App Store Version ID'), }), - src/apple/tools.ts:178-187 (registration)The registration of the apple_list_version_localizations tool within the tools definition.
const listVersionLocalizations: ToolDef = { name: 'apple_list_version_localizations', description: 'List all localizations for a version', schema: z.object({ versionId: z.string().describe('App Store Version ID'), }), handler: async (client, args) => { return client.request(`/appStoreVersions/${args.versionId}/appStoreVersionLocalizations`); }, };