GET api/StoreCategory
Gets a list of store categories.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of StoreCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| StoreCategoryId | integer |
None. |
|
| StoreCategoryName | string |
None. |
|
| GlobalId | string |
None. |
|
| StoreCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StoreCategoryId": 1,
"StoreCategoryName": "sample string 2",
"GlobalId": "sample string 3",
"StoreCount": 1
},
{
"StoreCategoryId": 1,
"StoreCategoryName": "sample string 2",
"GlobalId": "sample string 3",
"StoreCount": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfStoreCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomersdbWebShared.Models">
<StoreCategory>
<GlobalId>sample string 3</GlobalId>
<StoreCategoryId>1</StoreCategoryId>
<StoreCategoryName>sample string 2</StoreCategoryName>
<StoreCount>1</StoreCount>
</StoreCategory>
<StoreCategory>
<GlobalId>sample string 3</GlobalId>
<StoreCategoryId>1</StoreCategoryId>
<StoreCategoryName>sample string 2</StoreCategoryName>
<StoreCount>1</StoreCount>
</StoreCategory>
</ArrayOfStoreCategory>