GET Managed Application Method
This method returns a list of all applications.
Syntax:
GET /api/managed_application
Curl
$> curl 'http://localhost:8080/api/managed_application' -H 'Authorization: Basic YWRtaW46YWRtaW4='
Raw Request
GET /api/managed_application HTTP/1.1
Host: localhost:8080
Authorization: Basic YWRtaW46YWRtaW4=
Read Keys
Parameter | Type |
---|---|
_id | Id |
created_at | Datetime |
updated_at | Datetime |
name | String |
version | String |
description | String |
ios_certificate | String |
android_app_name | String |
ios_app_name | String |
ios_profile_name | String |
Response Body
{
"limit": 100,
"offset": 0,
"count": 1,
"managed_applications": [
{
"_id": "58c3fa6b4445530008030000",
"created_at": "2017-03-11T13:23:55.675Z",
"updated_at": "2017-05-01T18:39:08.659Z",
"name": "NotesApp",
"version": "",
"description": "",
"ios_certificate": "",
"android_app_name": null,
"ios_app_name": null,
"ios_profile_name": null
}
]
}