Skip to content

List App versions
Stable

Request

Returns AppVersion list

Security
apiKey
Path
application_idstring, (uuid)required

A UUID string identifying this application.

enterprise_idstringrequired

A UUID string identifying enterprise.

Query
version_codestring

filter by version code

build_numberstring

filter by build number

is_g_playboolean

filter google play applications

approval_statusstring

filter by approval status

Enum:"AVAILABLE""ACCEPTED""APPROVED""REJECTED"
is_enabledboolean

filter by enabled versions

is_defaultboolean

filter by default versions

created_on_gtstring, (datetime)

filter applications created after a given timestamp

created_on_ltstring, (datetime)

filter applications created before a given timestamp

updated_on_gtstring, (datetime)

filter applications updated after a given timestamp

updated_on_ltstring, (datetime)

filter applications updated before a given timestamp

limitinteger

Number of results to return per page.

offsetinteger

Return results from this index.

Default:0
orderingstring

Order result set by field name.

  • installed_count: order by asc
  • -installed_count: order by desc
cURL
curl -i -X GET \
  'https://develop-api.esper.io/_mock/openapi/v1/enterprise/{enterprise_id}/application/{application_id}/version/?version_code=string&build_number=string&is_g_play=true&approval_status=AVAILABLE&is_enabled=true&is_default=true&created_on_gt=string&created_on_lt=string&updated_on_gt=string&updated_on_lt=string&limit=0&offset=0&ordering=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

successful operation

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