Skip to content

List Google Play applications
Stable

Request

Returns list of Google Play applications

Security
apiKey
Path
enterprise_idstringrequired

A UUID string identifying this enterprise.

emm_idintegerrequired

An integer representing the ID of enterprise.

Query
google_product_idstring

filter by Google product id

package_namestring

filter by package name

created_onstring, (date-time)

filter by date app created

updated_onstring, (date-time)

filter by date app updated

limitinteger

Number of results to return per page.

Default:20
offsetinteger

Return results from this index.

Default:0
cURL
curl -i -X GET \
  'https://develop-api.esper.io/_mock/openapi/v0/enterprise/{enterprise_id}/emm/{emm_id}/product/?google_product_id=string&package_name=string&created_on=2019-08-24T14%3A15%3A22Z&updated_on=2019-08-24T14%3A15%3A22Z&limit=20&offset=0' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

successful operation

Bodyapplication/json
countintegerrequired
nextstring or null, (url)
previousstring or null, (url)
resultsArray of objects(GoogleProduct)required
Response
{ "count": 0, "next": "string", "previous": "string", "results": [ {} ] }