Get Organization summary
GET /v2/organizations/:guid/summary
Request
Route
GET /v2/organizations/e15b0565-ca63-4b99-a6d3-d24a3892a245/summary
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the organization for which summary is requested
|
|
|
|
name
|
The name of the organization.
|
|
|
|
spaces
|
List of spaces that are in the organization
|
|
|
|
status
|
Status of the organization
|
|
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/organizations/e15b0565-ca63-4b99-a6d3-d24a3892a245/summary" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI4OCIsImVtYWlsIjoiZW1haWwtMTk2QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjA1MDY2NTJ9.jJYkCMrQvsovpG3_t0-fycoLwbOL0JFAdCyCaALiD78" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"guid": "e15b0565-ca63-4b99-a6d3-d24a3892a245",
"name": "name-1010",
"status": "active",
"spaces": [
{
"guid": "c37e4bd0-2eb5-4282-ba19-4194b280c49b",
"name": "name-1012",
"service_count": 0,
"app_count": 0,
"mem_dev_total": 0,
"mem_prod_total": 0
}
]
}
Headers