GET api/general/site/Search?SearchTerm={SearchTerm}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
SearchTerm
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "Rank": 1,
    "ContentName": "sample string 2",
    "Title": "sample string 3",
    "URL": "sample string 4",
    "Type": "sample string 5"
  },
  {
    "Rank": 1,
    "ContentName": "sample string 2",
    "Title": "sample string 3",
    "URL": "sample string 4",
    "Type": "sample string 5"
  },
  {
    "Rank": 1,
    "ContentName": "sample string 2",
    "Title": "sample string 3",
    "URL": "sample string 4",
    "Type": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIST.Api.Models">
  <SearchModel>
    <ContentName>sample string 2</ContentName>
    <Rank>1</Rank>
    <Title>sample string 3</Title>
    <Type>sample string 5</Type>
    <URL>sample string 4</URL>
  </SearchModel>
  <SearchModel>
    <ContentName>sample string 2</ContentName>
    <Rank>1</Rank>
    <Title>sample string 3</Title>
    <Type>sample string 5</Type>
    <URL>sample string 4</URL>
  </SearchModel>
  <SearchModel>
    <ContentName>sample string 2</ContentName>
    <Rank>1</Rank>
    <Title>sample string 3</Title>
    <Type>sample string 5</Type>
    <URL>sample string 4</URL>
  </SearchModel>
</ArrayOfSearchModel>