POST api/PostDingDing/GetCustonPostList
获取客户帖子
Request Information
URI Parameters
None.
Body Parameters
请求数据
GetCustonPostListInput| Name | Description | Type | Additional information |
|---|---|---|---|
| keyword |
关键字 |
string |
None. |
| post_content_type |
帖子类型 |
integer |
None. |
| status |
状态:0-待回复 1-已回复 |
integer |
None. |
| start_time |
开始时间 |
string |
None. |
| end_time |
结束时间 |
string |
None. |
| use_type | integer |
None. |
|
| reply_id |
回复人id |
integer |
None. |
| page |
页码 |
integer |
None. |
| page_size |
每页显示条数 |
integer |
None. |
| user_id |
当前登录者Id |
string |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"keyword": "sample string 1",
"post_content_type": 1,
"status": 1,
"start_time": "sample string 2",
"end_time": "sample string 3",
"use_type": 1,
"reply_id": 1,
"page": 4,
"page_size": 5,
"user_id": "sample string 6",
"token": "sample string 7"
}
application/xml, text/xml
Sample:
<GetCustonPostListInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model.Dtos.PostDingDing"> <token xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 7</token> <user_id xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 6</user_id> <page xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">4</page> <page_size xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">5</page_size> <end_time>sample string 3</end_time> <keyword>sample string 1</keyword> <post_content_type>1</post_content_type> <reply_id>1</reply_id> <start_time>sample string 2</start_time> <status>1</status> <use_type>1</use_type> </GetCustonPostListInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
获取客户帖子
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |