POST api/v1/CategorySave
Request Information
URI Parameters
None.
Body Parameters
CategorySaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| CategoryID | integer |
None. |
|
| CategoryName | string |
None. |
|
| TaxonomyID | integer |
None. |
|
| UserID | integer |
None. |
|
| json | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"CategoryID": 2,
"CategoryName": "sample string 3",
"TaxonomyID": 4,
"UserID": 5,
"json": "sample string 6"
}
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> <Mode>sample string 1</Mode> <TaxonomyID>4</TaxonomyID> <UserID>5</UserID> <json>sample string 6</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. |