GET api/Category/GetAllCategoryDropDown
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
GetAllCategoryDropDownResponseName | Description | Type | Additional information |
---|---|---|---|
ProductCategoryDetails | Collection of ProductCategoryDetailModel |
None. |
|
ResponseCode | integer |
None. |
|
ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ProductCategoryDetails": [ { "ID": 1, "Type": 2, "CategoryID": 3, "ShopCategoryID": "sample string 4", "Name": "sample string 5" }, { "ID": 1, "Type": 2, "CategoryID": 3, "ShopCategoryID": "sample string 4", "Name": "sample string 5" } ], "ResponseCode": 1, "ResponseText": "sample string 2" }
application/xml, text/xml
Sample:
<GetAllCategoryDropDownResponse 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> <ProductCategoryDetails xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <d2p1:ProductCategoryDetailModel> <d2p1:CategoryID>3</d2p1:CategoryID> <d2p1:ID>1</d2p1:ID> <d2p1:Name>sample string 5</d2p1:Name> <d2p1:ShopCategoryID>sample string 4</d2p1:ShopCategoryID> <d2p1:Type>2</d2p1:Type> </d2p1:ProductCategoryDetailModel> <d2p1:ProductCategoryDetailModel> <d2p1:CategoryID>3</d2p1:CategoryID> <d2p1:ID>1</d2p1:ID> <d2p1:Name>sample string 5</d2p1:Name> <d2p1:ShopCategoryID>sample string 4</d2p1:ShopCategoryID> <d2p1:Type>2</d2p1:Type> </d2p1:ProductCategoryDetailModel> </ProductCategoryDetails> </GetAllCategoryDropDownResponse>