Method: deployments.groups.members.batchDelete

  • This API endpoint allows you to delete multiple group members from a specified group within Android Over-the-air deployments.

  • It accepts a list of group members in the request body, with a limit of 1000 members per request.

  • The request should be a POST request to the specified URL with necessary path parameters and authorization scopes.

  • If successful, the API returns an empty response body, indicating the members were deleted (or ignored if they didn't exist).

  • You'll need the https://www.googleapis.com/auth/android_partner_over_the_air OAuth scope for authorization.

Deletes group members in a group. If any member does not it exist, it will be ignored.

HTTP request

POST https://androidovertheair.googleapis.com/v1/{name=deployments/*/groups/*}/members:batchDelete

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

Relative resource name. For example: "deployments/deployment_x/groups/group_g/members"

Request body

The request body contains data with the following structure:

JSON representation
{
  "groupMembers": [
    {
      object (GroupMember)
    }
  ]
}
Fields
groupMembers[]

object (GroupMember)

Required. The list of group member to delete. This list is currently limited to no more than 1000 members. If you need to delete more than that, please send multiple requests.

Response body

If successful, the response body is empty.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/android_partner_over_the_air

For more information, see the OAuth 2.0 Overview.