remove_tester_from_group
Remove a beta tester from a beta testing group in App Store Connect to manage test access and group composition.
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 main handler function that performs the API DELETE request to remove the specified tester from the beta group.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:198-211 (schema)JSON schema defining the input parameters: groupId and testerId as required strings.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:196-212 (registration)Tool registration in the buildToolsList() array, defining name, description, and schema.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:1332-1333 (registration)Dispatch registration in the CallToolRequest handler switch statement, binding the tool name to the betaHandlers.removeTesterFromGroup method.return { toolResult: await this.betaHandlers.removeTesterFromGroup(args as any) };
- src/types/beta.ts:53-58 (helper)TypeScript interface used in the handler for the request body structure sent to the App Store Connect API.export interface RemoveTesterRequest { data: Array<{ id: string; type: "betaTesters"; }>; }