POST api/ShopCategory/Add
Request Information
URI Parameters
None.
Body Parameters
ShopCategoryModelName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
Name | string |
None. |
|
Description | string |
None. |
|
ParentID | integer |
None. |
|
ShopID | integer |
None. |
|
IsActive | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID": 1, "Name": "sample string 2", "Description": "sample string 3", "ParentID": 1, "ShopID": 1, "IsActive": true }
application/xml, text/xml
Sample:
<ShopCategoryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <Description>sample string 3</Description> <ID>1</ID> <IsActive>true</IsActive> <Name>sample string 2</Name> <ParentID>1</ParentID> <ShopID>1</ShopID> </ShopCategoryModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ShopCategoryResponseName | Description | Type | Additional information |
---|---|---|---|
ShopCategory | ShopCategoryModel |
None. |
|
ResponseCode | integer |
None. |
|
ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ShopCategory": { "ID": 1, "Name": "sample string 2", "Description": "sample string 3", "ParentID": 1, "ShopID": 1, "IsActive": true }, "ResponseCode": 1, "ResponseText": "sample string 2" }
application/xml, text/xml
Sample:
<ShopCategoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response"> <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode> <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText> <ShopCategory xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <d2p1:Description>sample string 3</d2p1:Description> <d2p1:ID>1</d2p1:ID> <d2p1:IsActive>true</d2p1:IsActive> <d2p1:Name>sample string 2</d2p1:Name> <d2p1:ParentID>1</d2p1:ParentID> <d2p1:ShopID>1</d2p1:ShopID> </ShopCategory> </ShopCategoryResponse>