apple_get_age_rating
Retrieve age rating declarations for App Store Connect apps using the AppInfo ID to ensure compliance with content guidelines.
Instructions
Get age rating declaration for an app info
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appInfoId | Yes | AppInfo ID |
Implementation Reference
- src/apple/tools.ts:417-426 (handler)The implementation of the 'apple_get_age_rating' tool, including its schema and handler function.
const getAgeRating: ToolDef = { name: 'apple_get_age_rating', description: 'Get age rating declaration for an app info', schema: z.object({ appInfoId: z.string().describe('AppInfo ID'), }), handler: async (client, args) => { return client.request(`/appInfos/${args.appInfoId}/ageRatingDeclaration`); }, };