POST api/blogger/logon/reset?userName={userName}&token={token}&newPwd={newPwd}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userName

string

Required

token

string

Required

newPwd

string

Required

Body Parameters

None.

Response Information

Resource Description

ResponseResultOfInt32
NameDescriptionTypeAdditional information
Data

integer

None.

Message

string

None.

Status

integer

None.

Page

PageInfo

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ResponseResultOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlogAdmin.Models">
  <Data>1</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>
</ResponseResultOfint>