POST api/advisor/blogs/save

Request Information

URI Parameters

None.

Body Parameters

CreateBlogViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

IsPublished

boolean

None.

IsExist

boolean

None.

Title

string

None.

Lead

string

None.

Body

string

None.

Thumbnail

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "IsPublished": true,
  "IsExist": true,
  "Title": "sample string 4",
  "Lead": "sample string 5",
  "Body": "sample string 6",
  "Thumbnail": "sample string 7"
}

application/xml, text/xml

Sample:
<CreateBlogViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Co.Kes.Data.ViewModels.CoKes.Blogs">
  <Body>sample string 6</Body>
  <Id>1</Id>
  <IsExist>true</IsExist>
  <IsPublished>true</IsPublished>
  <Lead>sample string 5</Lead>
  <Thumbnail>sample string 7</Thumbnail>
  <Title>sample string 4</Title>
</CreateBlogViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.