Home
Version 3
Organizations API

Organizations API

Retrieving the roles of all Users in the Organization

GET /v2/organizations/:guid/user_roles

Request

Route

GET /v2/organizations/f25cdccb-6a3d-4fe0-834d-b486dc3269e4/user_roles?results-per-page=1&page=1

Parameters

Name Description Valid Values Example Values
guid The guid of the Organization
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
results-per-page: 1
page: 1

Body

Name Description Default Valid Values Example Values

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyOCIsImVtYWlsIjoiZW1haWwtOTJAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyOTAzODcwMn0.dFQwL1EA8VdByBvvRhFAhtKevbqoaQm855GjUnxIzmY
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/organizations/f25cdccb-6a3d-4fe0-834d-b486dc3269e4/user_roles?results-per-page=1&page=1" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyOCIsImVtYWlsIjoiZW1haWwtOTJAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyOTAzODcwMn0.dFQwL1EA8VdByBvvRhFAhtKevbqoaQm855GjUnxIzmY" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 2,
  "total_pages": 2,
  "prev_url": null,
  "next_url": "/v2/organizations/f25cdccb-6a3d-4fe0-834d-b486dc3269e4/user_roles?order-direction=asc&page=2&results-per-page=1",
  "resources": [
    {
      "metadata": {
        "guid": "uaa-id-126",
        "url": "/v2/users/uaa-id-126",
        "created_at": "2015-04-07T19:11:42Z",
        "updated_at": null
      },
      "entity": {
        "admin": false,
        "active": false,
        "default_space_guid": null,
        "username": "everything@example.com",
        "organization_roles": [
          "org_user",
          "org_manager",
          "org_auditor",
          "billing_manager"
        ],
        "spaces_url": "/v2/users/uaa-id-126/spaces",
        "organizations_url": "/v2/users/uaa-id-126/organizations",
        "managed_organizations_url": "/v2/users/uaa-id-126/managed_organizations",
        "billing_managed_organizations_url": "/v2/users/uaa-id-126/billing_managed_organizations",
        "audited_organizations_url": "/v2/users/uaa-id-126/audited_organizations",
        "managed_spaces_url": "/v2/users/uaa-id-126/managed_spaces",
        "audited_spaces_url": "/v2/users/uaa-id-126/audited_spaces"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 723c2f95-a2fd-48ea-8fd2-e30692111151
Content-Length: 1220
X-Content-Type-Options: nosniff