Routes API

List all Apps for the Route

GET /v2/routes/:guid/apps

Request

Route

GET /v2/routes/81464707-0f48-4ab9-87dc-667ef15489fb/apps

Parameters

Name Description Valid Values Example Values
app_guid The guid of the app
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name, space_guid, organization_guid, diego, stack_guid
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
inline-relations-depth 0 - don't inline any relations and return URLs. Otherwise, inline to depth N.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response
app_guid: 6e62b293-f4c8-405a-be2b-b719e2848984

Body

Name Description Default Valid Values Example Values
guid The guid of the route.

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzMSIsImVtYWlsIjoiZW1haWwtODZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ2NjAwODg4OH0.DQbM1jyaYCxpunf0kzYbsenxBh-V-9LhwNGBuYHATOA
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/routes/81464707-0f48-4ab9-87dc-667ef15489fb/apps?app_guid=6e62b293-f4c8-405a-be2b-b719e2848984" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzMSIsImVtYWlsIjoiZW1haWwtODZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ2NjAwODg4OH0.DQbM1jyaYCxpunf0kzYbsenxBh-V-9LhwNGBuYHATOA" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "6141e57e-7636-480b-8f17-78c6049813f6",
        "url": "/v2/apps/6141e57e-7636-480b-8f17-78c6049813f6",
        "created_at": "2016-06-08T16:41:28Z",
        "updated_at": "2016-06-08T16:41:28Z"
      },
      "entity": {
        "name": "name-1412",
        "production": false,
        "space_guid": "93e43758-13fe-4751-8edc-caf225e27647",
        "stack_guid": "0459956d-e777-412d-af7e-d45f8d172edc",
        "buildpack": null,
        "detected_buildpack": null,
        "environment_json": null,
        "memory": 1024,
        "instances": 1,
        "disk_quota": 1024,
        "state": "STOPPED",
        "version": "51207851-f39e-428e-9a16-1372f4d6d4f6",
        "command": null,
        "console": false,
        "debug": null,
        "staging_task_id": null,
        "package_state": "PENDING",
        "health_check_type": "port",
        "health_check_timeout": null,
        "staging_failed_reason": null,
        "staging_failed_description": null,
        "diego": false,
        "docker_image": null,
        "docker_credentials": {
          "username": null,
          "password": null
        },
        "package_updated_at": "2016-06-08T16:41:28Z",
        "detected_start_command": "",
        "enable_ssh": true,
        "ports": null,
        "space_url": "/v2/spaces/93e43758-13fe-4751-8edc-caf225e27647",
        "stack_url": "/v2/stacks/0459956d-e777-412d-af7e-d45f8d172edc",
        "routes_url": "/v2/apps/6141e57e-7636-480b-8f17-78c6049813f6/routes",
        "events_url": "/v2/apps/6141e57e-7636-480b-8f17-78c6049813f6/events",
        "service_bindings_url": "/v2/apps/6141e57e-7636-480b-8f17-78c6049813f6/service_bindings",
        "route_mappings_url": "/v2/apps/6141e57e-7636-480b-8f17-78c6049813f6/route_mappings"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 2287f952-3408-48be-a1ef-5d7653ae367c
Content-Length: 1917
X-Content-Type-Options: nosniff