AI-generated Key Takeaways
-
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 |
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 ( |
Fields | |
---|---|
groupMembers[] |
Required. The list of |
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.