POST api/ItemCategory/Update
Request Information
URI Parameters
None.
Body Parameters
ItemCategoryViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| ParentCategoryCode | string |
None. |
|
| Code | string |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"ParentCategoryCode": "sample string 2",
"Code": "sample string 3",
"Name": "sample string 4",
"Description": "sample string 5"
}
application/xml, text/xml
Sample:
<ItemCategoryViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizFramework.Web.Services.Areas.Inventory.ViewModel"> <Code>sample string 3</Code> <Description>sample string 5</Description> <ID>1</ID> <Name>sample string 4</Name> <ParentCategoryCode>sample string 2</ParentCategoryCode> </ItemCategoryViewModel>
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.