POST api/blogger/author
Request Information
URI Parameters
None.
Body Parameters
AuthorDetailInfoName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Name | string |
None. |
|
UserName | string |
None. |
|
IconUrl | string |
None. |
|
PassWord | string |
None. |
|
PersonalPage | string |
None. |
|
FacebookFanpage | string |
None. |
|
InstagramPage | string |
None. |
|
OtherPages | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "sample string 2", "UserName": "sample string 3", "IconUrl": "sample string 4", "PassWord": "sample string 5", "PersonalPage": "sample string 6", "FacebookFanpage": "sample string 7", "InstagramPage": "sample string 8", "OtherPages": "sample string 9" }
application/xml, text/xml
Sample:
<AuthorController.AuthorDetailInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlogAdmin.Controllers.Blogger"> <FacebookFanpage>sample string 7</FacebookFanpage> <IconUrl>sample string 4</IconUrl> <Id>1</Id> <InstagramPage>sample string 8</InstagramPage> <Name>sample string 2</Name> <OtherPages>sample string 9</OtherPages> <PassWord>sample string 5</PassWord> <PersonalPage>sample string 6</PersonalPage> <UserName>sample string 3</UserName> </AuthorController.AuthorDetailInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultOfObjectName | Description | Type | Additional 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>