List all Apps
GET /v3/apps
Request
Route
GET /v3/apps?page=1&per_page=2&order_by=-created_at
Parameters
Name |
Description |
Valid Values |
Example Values |
names
|
Names of apps to filter by
|
|
|
space_guids
|
Spaces to filter by
|
|
- space_guids=space_guid1,space_guid2
|
organization_guids
|
Organizations to filter by
|
|
- organization_guids=org_guid1,org_guid2
|
guids
|
App guids to filter by
|
|
|
page
|
Page to display
|
|
|
per_page
|
Number of results per page
|
|
|
order_by
|
Value to sort by. Prepend with "+" or "-" to change sort direction to ascending or descending, respectively.
|
|
|
page: 1
per_page: 2
order_by: -created_at
Headers
cURL
curl "https://api.[your-domain.com]/v3/apps?page=1&per_page=2&order_by=-created_at" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIwNSIsImVtYWlsIjoiZW1haWwtMTQxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTMzMTA5ODB9.sdJcsqVJAFehT601qaalWbwr32CSlYLyx75IR6HiA38" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"pagination": {
"total_results": 3,
"first": {
"href": "/v3/apps?order_by=-created_at&page=1&per_page=2"
},
"last": {
"href": "/v3/apps?order_by=-created_at&page=2&per_page=2"
},
"next": {
"href": "/v3/apps?order_by=-created_at&page=2&per_page=2"
},
"previous": null
},
"resources": [
{
"guid": "guid-6cac2e3f-222f-4164-afb4-74da61f3339e",
"name": "my_app3",
"desired_state": "STOPPED",
"total_desired_instances": 0,
"created_at": "1970-01-01T00:00:03Z",
"updated_at": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-621",
"stack": "name-622"
}
},
"environment_variables": {
"magic": "beautiful"
},
"links": {
"self": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e"
},
"space": {
"href": "/v2/spaces/0300138b-5d15-4b28-a293-db720b63a9ea"
},
"processes": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e/processes"
},
"routes": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e/routes"
},
"packages": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e/packages"
},
"droplets": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e/droplets"
},
"start": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e/start",
"method": "PUT"
},
"stop": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e/stop",
"method": "PUT"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-6cac2e3f-222f-4164-afb4-74da61f3339e/current_droplet",
"method": "PUT"
}
}
},
{
"guid": "guid-620e5373-1602-4ac9-a366-0cc7846fb864",
"name": "my_app2",
"desired_state": "STOPPED",
"total_desired_instances": 0,
"created_at": "1970-01-01T00:00:02Z",
"updated_at": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-619",
"stack": "name-620"
}
},
"environment_variables": {
},
"links": {
"self": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864"
},
"space": {
"href": "/v2/spaces/0300138b-5d15-4b28-a293-db720b63a9ea"
},
"processes": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864/processes"
},
"routes": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864/routes"
},
"packages": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864/packages"
},
"droplets": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864/droplets"
},
"start": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864/start",
"method": "PUT"
},
"stop": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864/stop",
"method": "PUT"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-620e5373-1602-4ac9-a366-0cc7846fb864/current_droplet",
"method": "PUT"
}
}
}
]
}
Headers