apple_delete_beta_group
Remove a beta testing group from App Store Connect to manage app distribution and testing phases.
Instructions
Delete a beta group
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| betaGroupId | Yes | Beta Group ID |
Implementation Reference
- src/apple/tools.ts:989-998 (handler)The handler and schema definition for the apple_delete_beta_group tool.
const deleteBetaGroup: ToolDef = { name: 'apple_delete_beta_group', description: 'Delete a beta group', schema: z.object({ betaGroupId: z.string().describe('Beta Group ID'), }), handler: async (client, args) => { await client.request(`/betaGroups/${args.betaGroupId}`, { method: 'DELETE' }); return { success: true }; },