Get services a user can reference

get

/apiplatform/management/v1/apis/{apiId}/references/services

Returns all services 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 grant for the specified API. Only services the user is issued the Manage Service or Reference Service grant for are returned.

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.
  • Number of items to retrieve. 1 is the minumum; 128 is the maximum.
    Default Value: 128
  • Offset the list returned results by this amount. Default is zero.
    Default Value: 0
  • Collection Format: csv
    Pass sorting criteria, comma separated.
  • Pass filtering criteria, using the SCIM filter expression syntax
  • Include the total result count in the response.
    Default Value: false
Back to Top

Response

Supported Media Types

200 Response

The collection of services
Body ()
Root Schema : GetReferenceServicesResponse
Match All
Show Source
Nested Schema : CollectionResponseFeature
Type: object
Show Source
Nested Schema : CollectionResponsePagingFeature
Type: object
Show Source
Nested Schema : GetReferenceServicesResponse-allOf[2]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Service
Match All
Show Source
Nested Schema : ServiceId
Type: object
Show Source
Nested Schema : ServiceIdentity
Type: object
Show Source
Nested Schema : ServiceDef
Type: object
Show Source
Nested Schema : ServiceState
Type: object
Show Source
Nested Schema : ServiceMetadata
Type: object
Show Source
Nested Schema : implementation
Type: object
The service's configuration.
Show Source
Nested Schema : specification
Type: object
The service's configuration.
Show Source
Nested Schema : wsdl
Type: object
The WSDL specification configuration
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 all services that 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 
-H "Authorization: Bearer access_token"
https://example.com/apiplatform/management/v1/apis/{apiId}/references/services

{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:  540
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": 2,
    "limit": 128,
    "hasMore": false,
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "http://example.com:443/apiplatform/management/v1/apis/100/references/services?offset=0=128"
        }
    ],
    "items": [
        {
            "createdAt": "2018-02-05T20:50:29-0800",
            "updatedBy": "apcsadmin",
            "createdBy": "apcsadmin",
            "name": "myGoldservice",
            "id": "100",
            "type": "HTTP",
            "version": "1.0",
            "updatedAt": "2018-02-05T20:50:51-0800",
            "artifacts": []
        },
        {
            "createdAt": "2018-02-08T22:51:40-0800",
            "updatedBy": "apcsadmin",
            "createdBy": "apcsadmin",
            "name": "traffic",
            "description": "canned service",
            "id": "101",
            "type": "HTTP",
            "updatedAt": "2018-02-08T22:51:40-0800",
            "artifacts": []
        }
    ]
}
Back to Top