Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play Developer API - editId parameter

I'm trying to use this api from google: https://developers.google.com/android-publisher/api-ref/rest/v3/edits.apks/list

This endpoint requires two parameters:

  1. packageName (Package name of the app)
  2. editId (Identifier of the edit)

I understand what they mean by the packageName, but what do they mean with the editId parameter? Where do i find this editId? I literally have no clue.

Any tips would be highly appreciated!

like image 851
O.S.Kaya Avatar asked Nov 17 '25 13:11

O.S.Kaya


1 Answers

Google Play "Edit" methods allow you to prepare a number of changes to your app and then deploy them all at once. You first need to insert an "Edit" [1] that will hold all the changes you want to make to the app. In other words, it is required to label all interactions by inserting an "Edit".

"When you first create an edit, the edit is a copy of the current deployed state of the app. You can then modify the edit by calling the Edits methods." [2]

[1] https://developers.google.com/android-publisher/api-ref/rest/v3/edits/insert

[2] https://developers.google.com/android-publisher/edits

like image 165
Lorena Gomez Avatar answered Nov 20 '25 03:11

Lorena Gomez