Method: deployments.groups.disable

  • Disables defined groups within Android over-the-air deployments, returning a NOT_FOUND error if the path doesn't exist.

  • Requires specifying the relative resource name ("deployments/deployment_x/groups") as a path parameter.

  • The request body must contain a JSON object with a groupNames array listing the groups to disable.

  • A successful operation results in an empty response body.

  • Authorization requires the https://www.googleapis.com/auth/android_partner_over_the_air OAuth scope.

Disables the defined groups. Returns NOT_FOUND if the matching path does not exist.

HTTP request

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

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

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

Request body

The request body contains data with the following structure:

JSON representation
{
  "groupNames": [
    string
  ]
}
Fields
groupNames[]

string

Required. The groups that should be disabled.

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.