POST api/blogger/postManage/{authorId}/delete/{postId}?remark={remark}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
authorId

integer

Required

postId

integer

Required

remark

string

Required

Body Parameters

None.

Response Information

Resource Description

ResponseResultOfObject
NameDescriptionTypeAdditional information
Data

Object

None.

Message

string

None.

Status

integer

None.

Page

PageInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {},
  "Message": "sample string 2",
  "Status": 3,
  "Page": {
    "PageIndex": 1,
    "PageTotal": 2,
    "DataTotal": 3,
    "PostSize": 4,
    "TagSize": 5,
    "ThemeSize": 6
  }
}

application/xml, text/xml

Sample:
<ResponseResultOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlogAdmin.Models">
  <Data />
  <Message>sample string 2</Message>
  <Page>
    <DataTotal>3</DataTotal>
    <PageIndex>1</PageIndex>
    <PageTotal>2</PageTotal>
    <PostSize>4</PostSize>
    <TagSize>5</TagSize>
    <ThemeSize>6</ThemeSize>
  </Page>
  <Status>3</Status>
</ResponseResultOfanyType>