POST api/Meeting/GetMeetingList
查询会议列表
Request Information
URI Parameters
None.
Body Parameters
GetMeetingListDto| Name | Description | Type | Additional information |
|---|---|---|---|
| pageIndex | integer |
None. |
|
| pageSize | integer |
None. |
|
| searchDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"pageIndex": 1,
"pageSize": 2,
"searchDate": "sample string 3"
}
application/xml, text/xml
Sample:
<GetMeetingListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity"> <pageIndex>1</pageIndex> <pageSize>2</pageSize> <searchDate>sample string 3</searchDate> </GetMeetingListDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfDataSet| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | ReturnCode |
None. |
|
| Message | string |
None. |
|
| Data | DataSet |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 200,
"Message": "sample string 1",
"Data": null
}
application/xml, text/xml
Sample:
<ResultModelOfDataSetymujubN2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility"> <Code>Success</Code> <Data i:nil="true" /> <Message>sample string 1</Message> </ResultModelOfDataSetymujubN2>