Skip to content

Get application information
Stable

Request

Returns Application instance

Security
apiKey
Path
application_idstring, (uuid)required

A UUID string identifying this application.

enterprise_idstringrequired

A UUID string identifying enterprise.

cURL
curl -i -X GET \
  'https://develop-api.esper.io/_mock/openapi/enterprise/{enterprise_id}/application/{application_id}/' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

successful operation

Bodyapplication/json
idstring, (uuid)(Id)read-only
versionsArray of objects(Version)
application_namestring, [ 1 .. 255 ] characters(Application name)required
package_namestring, [ 1 .. 255 ] characters(Package name)required
developerstring or null, [ 1 .. 255 ] characters(Developer)
categorystring or null, [ 1 .. 255 ] characters(Category)
content_ratingstring, (decimal)(Content rating)
compatibilitystring or null, non-empty(Compatibility)
created_onstring, (date-time)(Created on)read-only
updated_onstring, (date-time)(Updated on)read-only
is_activeboolean(Is active)
is_hiddenboolean(Is hidden)
enterprisestring, (url)(Enterprise)required
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "versions": [ {} ], "application_name": "string", "package_name": "string", "developer": "string", "category": "string", "content_rating": "string", "compatibility": "string", "created_on": "2019-08-24T14:15:22Z", "updated_on": "2019-08-24T14:15:22Z", "is_active": true, "is_hidden": true, "enterprise": "string" }