Get service accounts a user can reference
/apiplatform/management/v1/apis/{apiId}/references/serviceaccounts
Returns all service accounts that can be referenced in policies applied to the {apiId} API. 
Users requesting this resource must be assigned the API Manager role and must be issued the Manage Service Account or Reference Service grant for the specified API. Only service accounts the user is issued the Manage Service Account, or Reference Service grant for are returned.
Request
- application/json
 
- 
                    apiId: string
                    
                    A unique ID referencing a specific API.
 
- 
                        fields(optional): array
                        
                        Collection Format:
csvPass 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. - 
                        limit(optional): integer(int32)
                        
                        Number of items to retrieve.
1is the minumum;128is the maximum.Default Value:128 - 
                        offset(optional): integer(int32)
                        
                        Offset the list returned results by this amount. Default is zero.Default Value:
0 - orderBy(optional): array
 - 
                        q(optional): string
                        
                        Pass filtering criteria, using the SCIM filter expression syntax
 - 
                        totalResults(optional): boolean
                        
                        Include the total result count in the response.Default Value:
false 
Response
- application/json
 
200 Response
object- 
            count(optional): 
            integer(int32)
            The number of items in this collection.
 
object- 
            totalResults(optional): 
            integer(int32)
            The total number of results available. Only provided if the showTotalResults query parameter is set to true
 
object- 
            name: 
            string
            The service account's name.
 
object- 
            configuration(optional): 
            object  configuration
            
            The service account's configuration.
 - 
            description(optional): 
            string
            The service account's description.
 - 
            type(optional): 
            string
            The type of service account, either
BasicorOAuth. 
object- 
            createdAt(optional): 
            string
            The date and time the service account was created.
 - 
            createdBy(optional): 
            string
            The user who created the service account.
 - 
            updatedAt(optional): 
            string
            The date and time the service account was last updated.
 - 
            updatedBy(optional): 
            string
            The user who last updated the service account.
 
object- 
            clientId(optional): 
            string
            The client ID.
 - 
            clientSecret(optional): 
            string
            The client secret. On read, the client secret is replaced by the client secret key.
 - 
            grant(optional): 
            object  grant
            
            The OAuth grant
 - 
            password(optional): 
            string
            The password. On read, the password is replaced by the password key.
 - 
            scopes(optional): 
            string
            Optional scopes.
 - 
            tokenEndpointUrl(optional): 
            string
            The token endpoint URL.
 - 
            tokenTransferOption(optional): 
            string
            The service account's description.
 - 
            username(optional): 
            string
            The username.
 
object- 
            password(optional): 
            string
            The password. On read, the password is replaced by the password key.
 - 
            type(optional): 
            string
            The grant type, either
ClientCredentialsorResourceOwnerCredentials. - 
            username(optional): 
            string
            The username.
 
403 Response
object- 
            detail(optional): 
            string
            Detailed error message
 - 
            errorCode(optional): 
            string
            Application specific error code
 - 
            errorDetails(optional): 
            array  errorDetails
            
            additional errors
 - 
            errorPath(optional): 
            string
            
 - 
            instance(optional): 
            string
            URI to the link that provides more detail about the error
 - 
            status(optional): 
            string
            HTTP status code
 - 
            title: 
            string
            Summary error message
 - 
            type: 
            string
            Error type
 
500 Response
object- 
            detail(optional): 
            string
            Detailed error message
 - 
            errorCode(optional): 
            string
            Application specific error code
 - 
            errorDetails(optional): 
            array  errorDetails
            
            additional errors
 - 
            errorPath(optional): 
            string
            
 - 
            instance(optional): 
            string
            URI to the link that provides more detail about the error
 - 
            status(optional): 
            string
            HTTP status code
 - 
            title: 
            string
            Summary error message
 - 
            type: 
            string
            Error type
 
Examples
The following example shows how to retrieve all service accounts can be referenced in policies applied to the API by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL
curl -i -X GET 
-u apicsadmin:password
https://example.com/apiplatform/management/v1/apis/{apiId}/references/serviceaccounts
  {apiId} is the unique Id for an API. To retrieve available API Ids, see Get APIs. 
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: Mon, 13 Mar 2017 07:24:25 GMT Content-Length: 410 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": 3,
    "limit": 128,
    "hasMore": false,
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:443/apiplatform/management/v1/apis/100/references/serviceaccounts?offset=0=128"
        }
    ],
    "items": [
        {
            "createdAt": "2018-02-05T20:49:19-0800",
            "updatedBy": "apcsadmin",
            "createdBy": "apcsadmin",
            "name": "MyGold",
            "description": "canned service account",
            "id": "100",
            "type": "Basic",
            "updatedAt": "2018-02-09T01:03:52-0800"
        },
        {
            "createdAt": "2018-02-08T22:15:01-0800",
            "updatedBy": "apcsadmin",
            "createdBy": "apcsadmin",
            "name": "Basic",
            "description": "canned service account",
            "id": "101",
            "type": "Basic",
            "updatedAt": "2018-02-08T22:15:19-0800"
        },
        {
            "createdAt": "2018-02-08T22:16:11-0800",
            "updatedBy": "apcsadmin",
            "createdBy": "apcsadmin",
            "name": "Special",
            "description": "canned service account",
            "id": "103",
            "type": "Basic",
            "updatedAt": "2018-02-08T22:16:11-0800"
        }
    ]
}