POST api/Forms/ExportSearchResult

Request Information

URI Parameters

None.

Body Parameters

ObjExportPageHome
NameDescriptionTypeAdditional information
UrlSearch

string

None.

RootSiteUrl

string

None.

FileName

string

None.

StartRow

integer

None.

SourceId

string

None.

QueryText

string

None.

ClientType

string

None.

RowLimit

integer

None.

RowsPerPage

integer

None.

TrimDuplicates

boolean

None.

EnableStemming

boolean

None.

Timeout

integer

None.

ListSelectProperties

Collection of SelectProperties

None.

Request Formats

application/json, text/json

Sample:
{
  "UrlSearch": "sample string 1",
  "RootSiteUrl": "sample string 2",
  "FileName": "sample string 3",
  "StartRow": 1,
  "SourceId": "sample string 4",
  "QueryText": "sample string 5",
  "ClientType": "sample string 6",
  "RowLimit": 1,
  "RowsPerPage": 1,
  "TrimDuplicates": true,
  "EnableStemming": true,
  "Timeout": 1,
  "ListSelectProperties": [
    {
      "SortOrder": 1,
      "InternalName": "sample string 2",
      "DisplayName": "sample string 3",
      "Type": "sample string 4"
    },
    {
      "SortOrder": 1,
      "InternalName": "sample string 2",
      "DisplayName": "sample string 3",
      "Type": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<ObjExportPageHome xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Appvity.eOffice.Backend.Models">
  <ClientType>sample string 6</ClientType>
  <EnableStemming>true</EnableStemming>
  <FileName>sample string 3</FileName>
  <ListSelectProperties>
    <SelectProperties>
      <DisplayName>sample string 3</DisplayName>
      <InternalName>sample string 2</InternalName>
      <SortOrder>1</SortOrder>
      <Type>sample string 4</Type>
    </SelectProperties>
    <SelectProperties>
      <DisplayName>sample string 3</DisplayName>
      <InternalName>sample string 2</InternalName>
      <SortOrder>1</SortOrder>
      <Type>sample string 4</Type>
    </SelectProperties>
  </ListSelectProperties>
  <QueryText>sample string 5</QueryText>
  <RootSiteUrl>sample string 2</RootSiteUrl>
  <RowLimit>1</RowLimit>
  <RowsPerPage>1</RowsPerPage>
  <SourceId>sample string 4</SourceId>
  <StartRow>1</StartRow>
  <Timeout>1</Timeout>
  <TrimDuplicates>true</TrimDuplicates>
  <UrlSearch>sample string 1</UrlSearch>
</ObjExportPageHome>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ObjExportPageHome'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.