Get the collection of saved searches for the for the specified type

get

/apiplatform/administration/v1/preferences/user/searches/{type}

Returns a collection of saved searches for the specified type. The response also contains HATEOAS links to related operations.

All authenticated users can access this resource.

Request

Supported Media Types
Path Parameters
  • Specifies the search type, valid values are: api, application, gateway, service_account and role.
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 user's saved searches for the specified type.
Body ()
Root Schema : UserSearchCollectionResponse
Match All
Show Source
Nested Schema : UserSearchCollectionResponse-allOf[0]
Type: object
Show Source
Nested Schema : CollectionResponseFeature
Type: object
Show Source
Nested Schema : LinksResponseFeature
Type: object
Show Source
Nested Schema : items
Type: array
User saved searches. Array of JSON Objects defined by client.
Show Source
Nested Schema : SavedSearchItem
Type: object

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 details about saved searches 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/administration/v1/preferences/user/searches/{type}

Where {type} is a resource type, like api, application, gateway, service, or service_account.

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.2.0
Date: Wed, 26 Jul 2017 17:10:11 GMT
Transfer-encoding: chunked
Content-type: application/json
X-oracle-dms-ecid: kKFfG1P0000000000
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc-config
Proxy-agent: Oracle-Traffic-Director/12.2.1.2.0
Content-encoding: gzip
Vary: accept-encoding

Example of Response Body

The following example shows the contents of the response body in JSON format, including details about each saved search for the resource type and HATEOAS links to related operations.

{
    "count": 2,
    "links": [
        {
            "templated": "true",
            "method": "GET",
            "rel": "self",
            "href": "https://example.com:443/apiplatform/administration/v1/preferences/user/searches/api"
        },
        {
            "templated": "true",
            "method": "GET",
            "rel": "canonical",
            "href": "https://example.com:443/apiplatform/administration/v1/preferences/user/searches/api"
        },
        {
            "templated": "true",
            "method": "PUT",
            "rel": "edit",
            "href": "https://example.com:443/apiplatform/administration/v1/preferences/user/searches/api"
        }
    ],
    "items": [
        {
            "scim": "( name sw \"Weather\" or name co \" Weather\" or name co \".Weather\" or name co \"-Weather\" )",
            "name": "weather",
            "conditions": [
                {
                    "scim": "( name sw \"Weather\" or name co \" Weather\" or name co \".Weather\" or name co \"-Weather\" )",
                    "id": "name",
                    "value": "\"Weather\""
                }
            ]
        },
        {
            "scim": "(( name sw \"Real\" or name co \" Real\" or name co \".Real\" or name co \"-Real\" ) or ( name sw \"Estate\" or name co \" Estate\" or name co \".Estate\" or name co \"-Estate\" ))",
            "name": "Real Estate",
            "conditions": [
                {
                    "scim": "(( name sw \"Real\" or name co \" Real\" or name co \".Real\" or name co \"-Real\" ) or ( name sw \"Estate\" or name co \" Estate\" or name co \".Estate\" or name co \"-Estate\" ))",
                    "id": "name",
                    "value": "\"Real Estate\""
                }
            ]
        }
    ]
}
Back to Top