Skip to main content
Glama

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
NameRequiredDescriptionDefault
betaGroupIdYesBeta Group ID
betaTesterIdsYesArray of beta tester IDs

Implementation Reference

  • 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 })),
          },
        });
Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/app-publish-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server