Method: edits.images.deleteall

  • Deletes all images for a specified language and image type within an app's edit.

  • Requires providing the package name, edit ID, language code, and image type in the request.

  • Uses an HTTP DELETE request with no request body and an empty response for success.

  • Authorization is needed with the https://www.googleapis.com/auth/androidpublisher scope.

  • The response may contain a list of deleted images if any were found.

Deletes all images for the specified language and image type. Returns an empty response if no images are found.

HTTP request

DELETE https://androidpublisher.googleapis.com/androidpublisher/v3/applications/{packageName}/edits/{editId}/listings/{language}/{imageType}

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
packageName

string

Package name of the app.

editId

string

Identifier of the edit.

language

string

Language localization code (a BCP-47 language tag; for example, "de-AT" for Austrian German). Providing a language that is not supported by the App is a no-op.

imageType

enum (AppImageType)

Type of the Image. Providing an image type that refers to no images is a no-op.

Request body

The request body must be empty.

Response body

Response for deleting all images.

If successful, the response body contains data with the following structure:

JSON representation
{
  "deleted": [
    {
      object (Image)
    }
  ]
}
Fields
deleted[]

object (Image)

The deleted images.

Authorization scopes

Requires the following OAuth scope:

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