Skip to content

List apps in enterprise
Stable

Request

Returns Application list

Security
apiKey
Path
enterprise_idstringrequired

A UUID string identifying this enterprise.

Query
application_namestring

filter by application name

package_namestring

filter by package name

package_name_exactstring

filter by package name (exact match)

has_uploaded_versionboolean

Returns applications having atleast one version uploaded

categorystring

filter by category

supported_sdkinteger

filter by supported sdk versions

is_activeboolean

filter by active applications

is_hiddenboolean

filter default esper apps

Default:false
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.

Default:20
offsetinteger

Return results from this index.

Default:0
cURL
curl -i -X GET \
  'https://develop-api.esper.io/_mock/openapi/v1/enterprise/{enterprise_id}/application/?application_name=string&package_name=string&package_name_exact=string&has_uploaded_version=true&category=string&supported_sdk=0&is_active=true&is_hidden=false&created_on_gt=string&created_on_lt=string&updated_on_gt=string&updated_on_lt=string&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(ApplicationV1)required
Response
{ "count": 0, "next": "string", "previous": "string", "results": [ {} ] }