Home
Version 3
Spaces API

Spaces API

List all Domains for the Space (deprecated)

GET /v2/spaces/:guid/domains

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
guid The guid of the Space
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name, owning_organization_guid, space_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

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIzMCIsImVtYWlsIjoiZW1haWwtMTY4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDd9.vLKX5Ce4gswW40_ESNnpe54TMmRi5ifBczzC1CS6PSc
Host: example.org
Cookie: 

Route

GET /v2/spaces/e0d439d8-f21e-48a2-8404-628abc89c5ba/domains

cURL

curl "https://api.[your-domain.com]/v2/spaces/e0d439d8-f21e-48a2-8404-628abc89c5ba/domains" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIzMCIsImVtYWlsIjoiZW1haWwtMTY4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDd9.vLKX5Ce4gswW40_ESNnpe54TMmRi5ifBczzC1CS6PSc" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 687e1717-2ee3-4aa4-ad02-06ab3c460cf9
X-Cf-Warnings: Endpoint+deprecated
Content-Length: 729
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 2,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "da60ba6d-52bc-44eb-a150-0dcbee9dfa6f",
        "url": "/v2/domains/da60ba6d-52bc-44eb-a150-0dcbee9dfa6f",
        "created_at": "2014-11-13T23:38:21+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "customer-app-domain1.com"
      }
    },
    {
      "metadata": {
        "guid": "3b454600-34b7-4a8b-82ee-94f7621d5b8e",
        "url": "/v2/domains/3b454600-34b7-4a8b-82ee-94f7621d5b8e",
        "created_at": "2014-11-13T23:38:21+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "customer-app-domain2.com"
      }
    }
  ]
}