Get grants issued for a service account

get

/apiplatform/management/v1/serviceaccounts/{saId}/grants

Returns a collection of grants that have been issued for the {saId} service account. 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 Account grant for the specified service account.

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 collection of grants that have been issued for the service account 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/serviceaccounts/{saId}/grants

where {saId} is the unique Id of the service account. To retrieve the available service accounts, see Get Service Accounts

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, 06 Oct 2017 08:38:53 GMT
Content-Length:  2989
Content-Type:  application/json
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-00026723
X-oracle-dms-rid: 0:1
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/serviceaccounts/grants/ManageServiceAccountGrant/grantees",
            "grant": "ManageServiceAccountGrant"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "grantees",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/grants/ViewAllDetailsServiceAccountGrant/grantees",
            "grant": "ViewAllDetailsServiceAccountGrant"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "grantees",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/grants/ReferenceServiceAccountGrant/grantees",
            "grant": "ReferenceServiceAccountGrant"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/101/grants?offset=0&=128"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "canonical",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/101/grants"
        },
        {
            "method": "GET",
            "rel": "types",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/grants/types"
        },
        {
            "templated": "true",
            "method": "POST",
            "rel": "create",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/101/grants",
            "grant": "ManageServiceAccountGrant"
        },
        {
            "templated": "true",
            "method": "POST",
            "rel": "create",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/101/grants",
            "grant": "ViewAllDetailsServiceAccountGrant"
        },
        {
            "templated": "true",
            "method": "POST",
            "rel": "create",
            "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/101/grants",
            "grant": "ReferenceServiceAccountGrant"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "templated": "true",
                    "method": "DELETE",
                    "rel": "delete",
                    "href": "http://example.com:443/apiplatform/management/v1/serviceaccounts/101/grants/ManageServiceAccountGrant/users/apicsadmin"
                }
            ],
            "type": "ManageServiceAccountGrant",
            "user": {
                "id": "apicsadmin"
            }
        }
    ]
}
Back to Top