Home
Version 3
Apps API

Apps API

List all Routes for the App

GET /v2/apps/:guid/routes

Request

Route

GET /v2/apps/6a9186ca-20e4-465f-8e53-551a68ab6ac2/routes

Parameters

Name Description Valid Values Example Values
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: host, domain_guid, path, port
  • 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

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE2NSIsImVtYWlsIjoiZW1haWwtMTA1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTg4NTU2NzF9.ncg-CZ0A9LYoU_mZ17s3FFaY5T-f3LJvSlRD43MFp9s
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/apps/6a9186ca-20e4-465f-8e53-551a68ab6ac2/routes" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE2NSIsImVtYWlsIjoiZW1haWwtMTA1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTg4NTU2NzF9.ncg-CZ0A9LYoU_mZ17s3FFaY5T-f3LJvSlRD43MFp9s" \
	-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": "893e7d4e-2038-4253-8dd6-1e056d5b24b3",
        "url": "/v2/routes/893e7d4e-2038-4253-8dd6-1e056d5b24b3",
        "created_at": "2016-03-17T21:41:11Z",
        "updated_at": null
      },
      "entity": {
        "host": "host-1",
        "path": "",
        "domain_guid": "b7174cc3-c108-40a6-bc21-87da4475b759",
        "space_guid": "ccba126a-e222-4845-82fd-5b84a805158a",
        "service_instance_guid": null,
        "port": 0,
        "domain_url": "/v2/domains/b7174cc3-c108-40a6-bc21-87da4475b759",
        "space_url": "/v2/spaces/ccba126a-e222-4845-82fd-5b84a805158a",
        "apps_url": "/v2/routes/893e7d4e-2038-4253-8dd6-1e056d5b24b3/apps",
        "route_mappings_url": "/v2/routes/893e7d4e-2038-4253-8dd6-1e056d5b24b3/route_mappings"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 
Content-Length: 914
X-Content-Type-Options: nosniff