REST API Service
Get all apps
REST API Service
Get all apps
Get all applications
GET
/
apps
curl --request GET \
--url http://localhost:8080/apps
{
"results": [
{
"config": "config1.yaml",
"id": 1,
"app_id": "app1"
},
{
"config": "config2.yaml",
"id": 2,
"app_id": "app2"
}
]
}
curl --request GET \
--url http://localhost:8080/apps
{
"results": [
{
"config": "config1.yaml",
"id": 1,
"app_id": "app1"
},
{
"config": "config2.yaml",
"id": 2,
"app_id": "app2"
}
]
}
Response
200 - application/json
Successful Response
The response is of type any
.
Was this page helpful?
curl --request GET \
--url http://localhost:8080/apps
{
"results": [
{
"config": "config1.yaml",
"id": 1,
"app_id": "app1"
},
{
"config": "config2.yaml",
"id": 2,
"app_id": "app2"
}
]
}