remove_tester_from_group
Remove a beta tester from a beta group in App Store Connect to manage test participant access for iOS and macOS app development.
Instructions
Remove a tester from a beta group
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| groupId | Yes | The ID of the beta group | |
| testerId | Yes | The ID of the beta tester |
Implementation Reference
- src/handlers/beta.ts:75-96 (handler)The handler function that executes the logic to remove a tester from a beta group using the App Store Connect API DELETE request to /betaGroups/{groupId}/relationships/betaTesters.async removeTesterFromGroup(args: { groupId: string; testerId: string; }): Promise<{ success: boolean; message: string }> { const { groupId, testerId } = args; validateRequired(args, ['groupId', 'testerId']); const requestBody: RemoveTesterRequest = { data: [{ id: testerId, type: "betaTesters" }] }; await this.client.delete(`/betaGroups/${groupId}/relationships/betaTesters`, requestBody); return { success: true, message: "Tester removed from group successfully" }; }
- src/index.ts:196-212 (schema)Input schema definition for the 'remove_tester_from_group' tool, defining the required parameters: groupId and testerId.name: "remove_tester_from_group", description: "Remove a tester from a beta group", inputSchema: { type: "object", properties: { groupId: { type: "string", description: "The ID of the beta group" }, testerId: { type: "string", description: "The ID of the beta tester" } }, required: ["groupId", "testerId"] } },
- src/index.ts:1331-1332 (registration)Registration and dispatch logic in the callTool handler switch statement, mapping the tool name to the BetaHandlers.removeTesterFromGroup method.case "remove_tester_from_group": return { toolResult: await this.betaHandlers.removeTesterFromGroup(args as any) };