Home
Version 3
Spaces API

Spaces API

List all Security Groups for the Space

GET /v2/spaces/:guid/security_groups

Request

Route

GET /v2/spaces/5f3d6172-abad-473c-b152-20cc3d8a88fb/security_groups?security_group_guid=8c10785c-96a4-4e64-a522-1e95963694bf

Parameters

Name Description Valid Values Example Values
guid The guid of the Space
security_group_guid The guid of the security group
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name
  • 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
security_group_guid: 8c10785c-96a4-4e64-a522-1e95963694bf

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExNyIsImVtYWlsIjoiZW1haWwtNjhAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzNjgyOTc3OH0.E-kZGNKFHNYXme2_h68J51QFc_SdJltBRzHuc435RVo
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/5f3d6172-abad-473c-b152-20cc3d8a88fb/security_groups?security_group_guid=8c10785c-96a4-4e64-a522-1e95963694bf" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExNyIsImVtYWlsIjoiZW1haWwtNjhAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzNjgyOTc3OH0.E-kZGNKFHNYXme2_h68J51QFc_SdJltBRzHuc435RVo" \
	-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": "b0a1301e-8533-4228-9e57-8163f863dce2",
        "url": "/v2/security_groups/b0a1301e-8533-4228-9e57-8163f863dce2",
        "created_at": "2015-07-06T23:22:58Z",
        "updated_at": null
      },
      "entity": {
        "name": "name-317",
        "rules": [
          {
            "protocol": "udp",
            "ports": "8080",
            "destination": "198.41.191.47/1"
          }
        ],
        "running_default": false,
        "staging_default": false,
        "spaces_url": "/v2/security_groups/b0a1301e-8533-4228-9e57-8163f863dce2/spaces"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: df001e77-a427-4f8d-afe7-b30502d72c0c
Content-Length: 720
X-Content-Type-Options: nosniff