POST api/document/document-list

Request Information

URI Parameters

None.

Body Parameters

DocumentListViewModel
NameDescriptionTypeAdditional information
userId

integer

None.

searchInId

integer

None.

searchText

string

None.

belongdTo

integer

None.

pageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "userId": 1,
  "searchInId": 2,
  "searchText": "sample string 3",
  "belongdTo": 4,
  "pageSize": 5
}

application/xml, text/xml

Sample:
<DocumentListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DMS.API.Models.RequestModel">
  <belongdTo>4</belongdTo>
  <pageSize>5</pageSize>
  <searchInId>2</searchInId>
  <searchText>sample string 3</searchText>
  <userId>1</userId>
</DocumentListViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.