GET api/ShopCategories
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ShopCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| DateCreated | date |
None. |
|
| LastCreated | date |
None. |
|
| CategoryName | string |
None. |
|
| CategoryImage | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"DateCreated": "2025-12-11T10:57:13.720094+02:00",
"LastCreated": "2025-12-11T10:57:13.720094+02:00",
"CategoryName": "sample string 4",
"CategoryImage": "sample string 5"
},
{
"id": 1,
"DateCreated": "2025-12-11T10:57:13.720094+02:00",
"LastCreated": "2025-12-11T10:57:13.720094+02:00",
"CategoryName": "sample string 4",
"CategoryImage": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfShopCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BonaMarketAPI.Database">
<ShopCategory>
<CategoryImage>sample string 5</CategoryImage>
<CategoryName>sample string 4</CategoryName>
<DateCreated>2025-12-11T10:57:13.720094+02:00</DateCreated>
<LastCreated>2025-12-11T10:57:13.720094+02:00</LastCreated>
<id>1</id>
</ShopCategory>
<ShopCategory>
<CategoryImage>sample string 5</CategoryImage>
<CategoryName>sample string 4</CategoryName>
<DateCreated>2025-12-11T10:57:13.720094+02:00</DateCreated>
<LastCreated>2025-12-11T10:57:13.720094+02:00</LastCreated>
<id>1</id>
</ShopCategory>
</ArrayOfShopCategory>