Get Service Account details

get

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

Returns the details of the {saId} service account. The response also contains HATEOAS links to related operations.

Users requesting this resource must be assigned the API Manager, Gateway Manager, or Service Manager role and must be issued the Manage Service Account or View All Details grants 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 service account's definition.
Body ()
Root Schema : GetServiceAccountResponse
Match All
Show Source
Nested Schema : ServiceAccount
Match All
Show Source
Nested Schema : ResourceLinksProperties
Type: object
Show Source
Nested Schema : ServiceAccountId
Type: object
Show Source
Nested Schema : ServiceAccountIdentity
Type: object
Show Source
Nested Schema : ServiceAccountDef
Type: object
Show Source
Nested Schema : ServiceAccountMetadata
Type: object
Show Source
Nested Schema : configuration
Type: object
The service account's configuration.
Show Source
Nested Schema : grant
Type: object
The OAuth grant
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 details of 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}

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:  Tue, 10 Oct 2017 08:38:53 GMT
Content-Length:  1883
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, including the ID of the service account.

            {
    "createdAt": "2018-02-05T20:49:19-0800",
    "updatedBy": "apicsadmin",
    "configuration": {
        "username": "apicsadmin"
    },
    "createdBy": "apicsadmin",
    "name": "MyGold",
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:7201/apiplatform/management/v1/serviceaccounts/100"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "canonical",
            "href": "http://example.com:7201/apiplatform/management/v1/serviceaccounts/100"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "history",
            "href": "http://example.com:7201/apiplatform/management/v1/serviceaccounts/100/history"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "edit",
            "href": "http://example.com:7201/apiplatform/management/v1/serviceaccounts/100"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "rename",
            "href": "http://example.com:7201/apiplatform/management/v1/serviceaccounts/100/identity"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "grants",
            "href": "http://example.com:7201/apiplatform/management/v1/serviceaccounts/100/grants"
        }
    ],
    "id": "100",
    "type": "Basic",
    "updatedAt": "2018-02-05T20:49:19-0800"
}
Back to Top