Home
Version 3
Organizations API

Organizations API

List all Services for the Organization

GET /v2/organizations/:guid/services

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
guid The guid of the Organization
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: active, label, provider, service_broker_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.eyJ1c2VyX2lkIjoidWFhLWlkLTI2MiIsImVtYWlsIjoiZW1haWwtMjA1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5NzZ9.fPrwme_hJPhfG-R2HSeSzhEWrvMWkagv_mvh8s6Akpo
Host: example.org
Cookie: 

Route

GET /v2/organizations/4985ccf2-a664-48ba-98d4-226735dd3adf/services

cURL

curl "https://api.[your-domain.com]/v2/organizations/4985ccf2-a664-48ba-98d4-226735dd3adf/services" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI2MiIsImVtYWlsIjoiZW1haWwtMjA1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5NzZ9.fPrwme_hJPhfG-R2HSeSzhEWrvMWkagv_mvh8s6Akpo" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 893a0476-89a3-41a3-b4c0-a2b469177a80
Content-Length: 1007
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "4aad996e-1eac-4aef-87ae-64a94ae16840",
        "url": "/v2/services/4aad996e-1eac-4aef-87ae-64a94ae16840",
        "created_at": "2014-12-24T01:39:36+00:00",
        "updated_at": null
      },
      "entity": {
        "label": "label-50",
        "provider": "provider-50",
        "url": "https://foo.com/url-96",
        "description": "desc-176",
        "long_description": null,
        "version": "version-50",
        "info_url": null,
        "active": true,
        "bindable": true,
        "unique_id": "f671fda9-6e7d-4f31-be3c-10794cc9fdf6",
        "extra": null,
        "tags": [

        ],
        "requires": [

        ],
        "documentation_url": null,
        "service_broker_guid": null,
        "plan_updateable": false,
        "service_plans_url": "/v2/services/4aad996e-1eac-4aef-87ae-64a94ae16840/service_plans"
      }
    }
  ]
}