POST api/v1/ProductCategorySave
Request Information
URI Parameters
None.
Body Parameters
CategorySaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| CategoryID | integer |
None. |
|
| CategoryName | string |
None. |
|
| CategoryTag | string |
None. |
|
| json | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"CategoryID": 2,
"CategoryName": "sample string 3",
"CategoryTag": "sample string 4",
"json": "sample string 5"
}
application/xml, text/xml
Sample:
<CategorySaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CategoryID>2</CategoryID> <CategoryName>sample string 3</CategoryName> <CategoryTag>sample string 4</CategoryTag> <Mode>sample string 1</Mode> <json>sample string 5</json> </CategorySaveInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |