Get service grants

get

/apiplatform/management/v1/services/grants/types

Returns the grants that can be issued for services. The name, description, and ID of each grant is returned in the response.

Users requesting this resource must be assigned the Service Manager role.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

The collection of grant types
Body ()
Root Schema : GetGrantTypesResponse
Match All
Show Source
Nested Schema : CollectionResponseFeature
Type: object
Show Source
Nested Schema : GetGrantTypesResponse-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Type
Type: object
Show Source

403 Response

Forbidden.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to retrieve the available service grants by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X GET 
-H "Authorization: Bearer access_token"
https://example.com/apiplatform/management/v1/services/grants/types

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 200 OK
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Tue, 10 Oct 2017 07:24:25 GMT
Content-Length:  865
Content-Type:  application/json
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-00018fc1
X-oracle-dms-rid:  0
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0

Example of Response Body

The following shows an example of the response body, including the name, description, and ID of the grant.

{
    "count": 3,
    "links": [
        {
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:443/apiplatform/management/v1/services/grants/types"
        }
    ],
    "items": [
        {
            "name": "Manage Service",
            "description": "Users issued this grant are allowed to modify and delete this service.",
            "id": "ManageServiceGrant"
        },
        {
            "name": "View all details",
            "description": "Users issued this grant are allowed to see all details about this service.",
            "id": "ViewAllDetailsServiceGrant"
        },
        {
            "name": "Reference Service",
            "description": "Users issued this grant are allowed to reference this service.",
            "id": "ReferenceServiceGrant"
        }
    ]
}
Back to Top