List all Apps
GET /v3/apps
Request
Route
GET /v3/apps?page=1&per_page=2&order_by=created_at&order_direction=desc
Parameters
Name |
Description |
Valid Values |
Example Values |
names
|
Names of apps to filter by
|
|
- names[]=name1&names[]=name2
|
space_guids
|
Spaces to filter by
|
|
- space_guids[]=space_guid1&space_guids[]=space_guid2
|
organization_guids
|
Organizations to filter by
|
|
- organization_guids[]=org_guid1&organization_guids[]=org_guid2
|
guids
|
App guids to filter by
|
|
- guid[]=guid1&guid[]=guid2
|
page
|
Page to display
|
|
|
per_page
|
Number of results per page
|
|
|
order_by
|
Value to sort by
|
|
|
order_direction
|
Direction to sort by
|
|
|
page: 1
per_page: 2
order_by: created_at
order_direction: desc
Body
Name |
Description |
Default |
Valid Values |
Example Values |
Headers
cURL
curl "https://api.[your-domain.com]/v3/apps?page=1&per_page=2&order_by=created_at&order_direction=desc" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI2OSIsImVtYWlsIjoiZW1haWwtMjE1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzI3NzQ5OTV9.mwWxUZeOB6CC1W3s8gIxTJ4fHzftHQzo9M1sWkWV7Ig" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"pagination": {
"total_results": 3,
"first": {
"href": "/v3/apps?order_by=created_at&order_direction=desc&page=1&per_page=2"
},
"last": {
"href": "/v3/apps?order_by=created_at&order_direction=desc&page=2&per_page=2"
},
"next": {
"href": "/v3/apps?order_by=created_at&order_direction=desc&page=2&per_page=2"
},
"previous": null
},
"resources": [
{
"guid": "guid-f5ed840f-cfd4-497a-89a3-8311493fb450",
"name": "my_app3",
"desired_state": "STOPPED",
"total_desired_instances": 0,
"created_at": "1970-01-01T00:00:03Z",
"updated_at": null,
"environment_variables": {
"magic": "beautiful"
},
"_links": {
"self": {
"href": "/v3/apps/guid-f5ed840f-cfd4-497a-89a3-8311493fb450"
},
"processes": {
"href": "/v3/apps/guid-f5ed840f-cfd4-497a-89a3-8311493fb450/processes"
},
"packages": {
"href": "/v3/apps/guid-f5ed840f-cfd4-497a-89a3-8311493fb450/packages"
},
"space": {
"href": "/v2/spaces/a6bc064c-e35f-41d0-a366-67729a151e5a"
},
"start": {
"href": "/v3/apps/guid-f5ed840f-cfd4-497a-89a3-8311493fb450/start",
"method": "PUT"
},
"stop": {
"href": "/v3/apps/guid-f5ed840f-cfd4-497a-89a3-8311493fb450/stop",
"method": "PUT"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-f5ed840f-cfd4-497a-89a3-8311493fb450/current_droplet",
"method": "PUT"
}
}
},
{
"guid": "guid-45abc12e-6f09-414b-a288-db4420ed0d5a",
"name": "my_app2",
"desired_state": "STOPPED",
"total_desired_instances": 0,
"created_at": "1970-01-01T00:00:02Z",
"updated_at": null,
"environment_variables": {
},
"_links": {
"self": {
"href": "/v3/apps/guid-45abc12e-6f09-414b-a288-db4420ed0d5a"
},
"processes": {
"href": "/v3/apps/guid-45abc12e-6f09-414b-a288-db4420ed0d5a/processes"
},
"packages": {
"href": "/v3/apps/guid-45abc12e-6f09-414b-a288-db4420ed0d5a/packages"
},
"space": {
"href": "/v2/spaces/a6bc064c-e35f-41d0-a366-67729a151e5a"
},
"start": {
"href": "/v3/apps/guid-45abc12e-6f09-414b-a288-db4420ed0d5a/start",
"method": "PUT"
},
"stop": {
"href": "/v3/apps/guid-45abc12e-6f09-414b-a288-db4420ed0d5a/stop",
"method": "PUT"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-45abc12e-6f09-414b-a288-db4420ed0d5a/current_droplet",
"method": "PUT"
}
}
}
]
}
Headers