POST api/resto/category_add
Request Information
URI Parameters
None.
Body Parameters
CategoryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Org_ID | integer |
None. |
|
| Category_ID | integer |
None. |
|
| CategoryName | string |
None. |
|
| CategoryType | string |
None. |
|
| DisplayOrder | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Org_ID": 1,
"Category_ID": 2,
"CategoryName": "sample string 3",
"CategoryType": "sample string 4",
"DisplayOrder": 5
}
application/xml, text/xml
Sample:
<resto.CategoryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Resto_Soft"> <CategoryName>sample string 3</CategoryName> <CategoryType>sample string 4</CategoryType> <Category_ID>2</Category_ID> <DisplayOrder>5</DisplayOrder> <Org_ID>1</Org_ID> </resto.CategoryRequest>
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.