POST api/BlogCategory/UpdateBlogCategory
Request Information
URI Parameters
None.
Body Parameters
BlogCategoryBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BlogCategoryId | integer |
None. |
|
| BlogCategoryName | string |
None. |
|
| BlogCategoryImage | string |
None. |
|
| BlogParentCategoryId | integer |
None. |
|
| IsActive | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"BlogCategoryId": 1,
"BlogCategoryName": "sample string 1",
"BlogCategoryImage": "sample string 2",
"BlogParentCategoryId": 1,
"IsActive": true
}
application/xml, text/xml
Sample:
<BlogCategoryBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/kcm_api_portal.Models"> <BlogCategoryId>1</BlogCategoryId> <BlogCategoryImage>sample string 2</BlogCategoryImage> <BlogCategoryName>sample string 1</BlogCategoryName> <BlogParentCategoryId>1</BlogParentCategoryId> <IsActive>true</IsActive> </BlogCategoryBindingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.