POST
api/v1/add-edit-blog-category?childSellerId={childSellerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| childSellerId | integer |
Required |
Body Parameters
BlogCategoryListingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BlogCategoryId | integer |
None. |
|
| AdminMemberId | integer |
None. |
|
| Name | string |
None. |
|
| ParentBlogCategory | integer |
None. |
|
| IsLogicalDeleted | boolean |
None. |
|
| CreatedOn | date |
None. |
|
| CreatedBy | integer |
None. |
|
| ModifiedOn | date |
None. |
|
| ModifiedBy | integer |
None. |
|
| IsActive | boolean |
None. |
|
| SortOrder | integer |
None. |
|
| ClientId | integer |
None. |
|
| BlogCount | integer |
None. |
Request Formats
application/json, text/json
{
"BlogCategoryId": 1,
"AdminMemberId": 2,
"Name": "sample string 3",
"ParentBlogCategory": 1,
"IsLogicalDeleted": true,
"CreatedOn": "2026-02-05T07:22:22.1266459+00:00",
"CreatedBy": 1,
"ModifiedOn": "2026-02-05T07:22:22.1266459+00:00",
"ModifiedBy": 1,
"IsActive": true,
"SortOrder": 1,
"ClientId": 6,
"BlogCount": 1
}
text/html
{"BlogCategoryId":1,"AdminMemberId":2,"Name":"sample string 3","ParentBlogCategory":1,"IsLogicalDeleted":true,"CreatedOn":"2026-02-05T07:22:22.1266459+00:00","CreatedBy":1,"ModifiedOn":"2026-02-05T07:22:22.1266459+00:00","ModifiedBy":1,"IsActive":true,"SortOrder":1,"ClientId":6,"BlogCount":1}
application/xml, text/xml
<BlogCategoryListingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.BlogCategory"> <AdminMemberId>2</AdminMemberId> <BlogCategoryId>1</BlogCategoryId> <BlogCount>1</BlogCount> <ClientId>6</ClientId> <CreatedBy>1</CreatedBy> <CreatedOn>2026-02-05T07:22:22.1266459+00:00</CreatedOn> <IsActive>true</IsActive> <IsLogicalDeleted>true</IsLogicalDeleted> <ModifiedBy>1</ModifiedBy> <ModifiedOn>2026-02-05T07:22:22.1266459+00:00</ModifiedOn> <Name>sample string 3</Name> <ParentBlogCategory>1</ParentBlogCategory> <SortOrder>1</SortOrder> </BlogCategoryListingModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: string
Response Formats
application/json, text/json, text/html
"sample string 1"
application/xml, text/xml
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>
