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
| 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/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"; }>; }