Get grants issued for a service

get

/apiplatform/management/v1/services/{serviceId}/grants

Returns a collection of grants that have been issued for the {serviceId} service. By default, the grant type, role, and user or group ID for users or groups issued each grant are returned. Additional fields can be returned by sending any of these field names, separated by commas, in the fields query parameter: createdAt, createdBy, user.roles, and group.roles.

The response also contains HATEOAS links to related operations.

Users requesting this resource must be assigned the Service Manager role and must be issued the Manage Service grant for the specified service.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Collection Format: csv
    Pass optional fields, separated by commas, in this parameter to return them in the response. See the operation's description for a list of field values.
Back to Top

Response

Supported Media Types

200 Response

The collection of grants
Body ()
Root Schema : GetGrantsResponse
Match All
Show Source
Nested Schema : CollectionResponseFeature
Type: object
Show Source
Nested Schema : LinksResponseFeature
Type: object
Show Source
Nested Schema : GetGrantsResponse-allOf[2]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : GetGrantsItem
Match All
Show Source
Nested Schema : Grant
Type: object
Show Source
Nested Schema : ResourceLinksProperties
Type: object
Show Source
Nested Schema : Group
Type: object
Show Source
Nested Schema : User
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 a a collection of grants that have been issued for the service 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/{serviceId}/grants

where {serviceId} is a unique Id of a specific service. See Get Services.

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:  Fri, 15 Dec 2017 07:24:25 GMT
Content-Length:  2842
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 example shows the contents of the response body in JSON format.

{
    "offset": 0,
    "count": 1,
    "limit": 128,
    "hasMore": false,
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "grantees",
            "href": "http://example.com:443/apiplatform/management/v1/services/grants/ManageServiceGrant/grantees",
            "grant": "ManageServiceGrant"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "grantees",
            "href": "http://example.com:443/apiplatform/management/v1/services/grants/ViewAllDetailsServiceGrant/grantees",
            "grant": "ViewAllDetailsServiceGrant"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "grantees",
            "href": "http://example.com:443/apiplatform/management/v1/services/grants/ReferenceServiceGrant/grantees",
            "grant": "ReferenceServiceGrant"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:443/apiplatform/management/v1/services/103/grants?offset=0&=128"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "canonical",
            "href": "http://example.com:443/apiplatform/management/v1/services/103/grants"
        },
        {
            "method": "GET",
            "rel": "types",
            "href": "http://example.com:443/apiplatform/management/v1/services/grants/types"
        },
        {
            "templated": "true",
            "method": "POST",
            "rel": "create",
            "href": "http://example.com:443/apiplatform/management/v1/services/103/grants",
            "grant": "ManageServiceGrant"
        },
        {
            "templated": "true",
            "method": "POST",
            "rel": "create",
            "href": "http://example.com:443/apiplatform/management/v1/services/103/grants",
            "grant": "ViewAllDetailsServiceGrant"
        },
        {
            "templated": "true",
            "method": "POST",
            "rel": "create",
            "href": "http://example.com:443/apiplatform/management/v1/services/103/grants",
            "grant": "ReferenceServiceGrant"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "templated": "true",
                    "method": "DELETE",
                    "rel": "delete",
                    "href": "http://example.com:443/apiplatform/management/v1/services/103/grants/ManageServiceGrant/users/apicsadmin"
                }
            ],
            "type": "ManageServiceGrant",
            "user": {
                "id": "apicsadmin"
            }
        }
    ]
}
Back to Top