Accelerate the Value of Data

Get Personal Saved Searches

Returns all requests belonging to current user without paging.

Request:

GET <tenant URI>/personal/savedSearches
Table 1. Parameters
Parameters Name Required Details
Headers Authorization Yes Information about authentication access token in format "Bearer <accessToken>" (see details in Authentication API ).
Content-Type Yes Should be "Content-Type: application/json".

Request

GET <tenant URI>/personal/savedSearches
Headers:Authorization:Bearer 204938ca-2cf7-44b0-b11a-1b4c59984512,
Content-Type:application/json

GET <tenant URI>/personal/savedSearches[
   {
      "URI":"searchRequests/01LC24n",
      "name":"super-search #2",
      "query":"filter=(equals(type,'configuration/entityTypes/Location'))",
      "isFavorite":false,
      "uiState":{
         "searchPanelLength":32,
         "searchPanelWidth":256
      },
      "createDate":1398116799812,
      "isPublic":true,
      "owner":"mike"
   },
   {
      "URI":"searchRequests/01LBxoX",
      "name":"super-search #1",
      "description":"Conscious description",
      "query":"filter=(equals(type,'configuration/entityTypes/HCP'))",
      "isFavorite":true,
      "uiState":{
         "searchPanelLength":100,
         "searchPanelWidth":100
      },
      "createDate":1398116799771,
      "updateDate":1398123175636,
      "isPublic":false,
      "owner":"mike"
   }
   ]