apple_remove_beta_testers_from_group
Remove specific beta testers from an Apple beta testing group to manage access and streamline testing phases.
Instructions
Remove beta testers from a group
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| betaGroupId | Yes | Beta Group ID | |
| betaTesterIds | Yes | Array of beta tester IDs |
Implementation Reference
- src/apple/tools.ts:1018-1031 (handler)The tool definition and handler implementation for apple_remove_beta_testers_from_group.
const removeBetaTestersFromGroup: ToolDef = { name: 'apple_remove_beta_testers_from_group', description: 'Remove beta testers from a group', schema: z.object({ betaGroupId: z.string().describe('Beta Group ID'), betaTesterIds: z.array(z.string()).describe('Array of beta tester IDs'), }), handler: async (client, args) => { return client.request(`/betaGroups/${args.betaGroupId}/relationships/betaTesters`, { method: 'DELETE', body: { data: args.betaTesterIds.map((id: string) => ({ type: 'betaTesters', id })), }, });