POST api/PostDingDing/ApplyPostDelayTime
Request Information
URI Parameters
None.
Body Parameters
ApplyPostDelayTimeInput| Name | Description | Type | Additional information |
|---|---|---|---|
| post_id | integer |
None. |
|
| delay_time | string |
None. |
|
| reason | string |
None. |
|
| pageType | string |
None. |
|
| is_new_post | integer |
None. |
|
| user_id |
当前登录者Id |
string |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"post_id": 1,
"delay_time": "sample string 1",
"reason": "sample string 2",
"pageType": "sample string 3",
"is_new_post": 1,
"user_id": "sample string 4",
"token": "sample string 5"
}
application/xml, text/xml
Sample:
<ApplyPostDelayTimeInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model.Dtos.Post"> <token xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 5</token> <user_id xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 4</user_id> <delay_time>sample string 1</delay_time> <is_new_post>1</is_new_post> <pageType>sample string 3</pageType> <post_id>1</post_id> <reason>sample string 2</reason> </ApplyPostDelayTimeInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |