POST api/Notice/NoticeList

Request Information

URI Parameters

None.

Body Parameters

NoticeListRequest
NameDescriptionTypeAdditional information
NoticeId

integer

None.

status

integer

None.

PageNumber

integer

None.

PageSize

integer

None.

SearchText

string

None.

Request Formats

application/json, text/json

Sample:
{
  "NoticeId": 1,
  "status": 2,
  "PageNumber": 3,
  "PageSize": 4,
  "SearchText": "sample string 5"
}

text/xml

Sample:
<NoticeListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Project">
  <NoticeId>1</NoticeId>
  <PageNumber>3</PageNumber>
  <PageSize>4</PageSize>
  <SearchText>sample string 5</SearchText>
  <status>2</status>
</NoticeListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json

Sample:
{}

text/xml

Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />