Accessing the edit method from google play developer rest api

Viewed 1028

I successfully authenticated to google play developer rest api and I am getting also the refresh token but I can figure out how to make an edit requests. I have method signature at the following link:

https://developers.google.com/android-publisher/api-ref/edits/insert

I added the following header

Authorization:{{token_type}} {{access_token}}

but i cant figure out where to put the package name:

POST https://www.googleapis.com/androidpublisher/v2/applications/packageName/edits

I putted packageName like above using get and also as post parameter and in both cases i am encountered "404 not found" error. Please help.

2 Answers
Related