Ads

Friday, 7 April 2017

REST with Search in SharePoint

In SharePoint 2013, There are few REST end points which are used to retrieve search results.
  • Site Coll Url.../_api/search/query
  • Site Coll Url.../_api/search/postquery
  • Site Coll Url.../_api/search/suggest
Below are few search URLs to query search results..
Set maximum number of record to return
/_api/search/query?querytext='search term'&rowlimit=100
Set index of start row
/_api/search/query?querytext='search term'&startrow=11
Specify a number of results to return
/_api/search/query?querytext='search term'&startrow=11&rowlimit=10 (but note 10 is the default)
Specifies the list of properties to sort the search results by.
/_api/search/query?querytext=’terms’&sortlist= ‘Title:ascending’
Specify particular (managed) properties to return
/_api/search/query?querytext='search term'&selectproperties='Author,Path,Title'
Use a search Result Source (i.e. a scope)
/_api/search/query?querytext='search term'&sourceid='B09A7990-05EA-4AF9-81EF-EDFAB16C4E31' (this ex. is to search the ‘People’ result source)

In above table, The last one is used to query results from any document library which GUID is passed as sourceid in search query URL. We can also replaced this ID with other GUIDs given below to get the result from specific result sources.

Result Source
ID
Documents
e7ec8cee-ded8-43c9-beb5-436b54b31e84
Items matching a content type
5dc9f503-801e-4ced-8a2c-5d1237132419
Items matching a tag
e1327b9c-2b8c-4b23-99c9-3730cb29c3f7
Items related to current user
48fec42e-4a92-48ce-8363-c2703a40e67d
Items with same keyword as this item
5c069288-1d17-454a-8ac6-9c642a065f48
Local People Results
b09a7990-05ea-4af9-81ef-edfab16c4e31
Local Reports And Data Results
203fba36-2763-4060-9931-911ac8c0583b
Local SharePoint Results
8413cd39-2156-4e00-b54d-11efd9abdb89
Local Video Results
78b793ce-7956-4669-aa3b-451fc5defebf
Pages
5e34578e-4d08-4edc-8bf3-002acf3cdbcc
Pictures
38403c8c-3975-41a8-826e-717f2d41568a
Popular
97c71db1-58ce-4891-8b64-585bc2326c12
Recently changed items
ba63bbae-fa9c-42c0-b027-9a878f16557c
Recommended Items
ec675252-14fa-4fbe-84dd-8d098ed74181
Wiki
9479bf85-e257-4318-b5a8-81a180f5faa1








No comments:

Post a Comment

Ads