GET api/Orders/DisplayOrderItems?profileId={profileId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
profileId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderModelName | Description | Type | Additional information |
---|---|---|---|
OrderID | integer |
None. |
|
UserID | string |
None. |
|
ClothingID | integer |
None. |
|
ClothingName | string |
None. |
|
ClothingSPrice | decimal number |
None. |
|
ClothingSize | string |
None. |
|
ClothingThumbnail | string |
None. |
|
Visible | integer |
None. |
|
OutfitID | string |
None. |
|
ClothingLevel | integer |
None. |
|
OrderCreateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "OrderID": 1, "UserID": "sample string 2", "ClothingID": 3, "ClothingName": "sample string 4", "ClothingSPrice": 5.0, "ClothingSize": "sample string 6", "ClothingThumbnail": "sample string 7", "Visible": 8, "OutfitID": "sample string 9", "ClothingLevel": 10, "OrderCreateDate": "2025-06-16T23:56:47.583784-05:00" }, { "OrderID": 1, "UserID": "sample string 2", "ClothingID": 3, "ClothingName": "sample string 4", "ClothingSPrice": 5.0, "ClothingSize": "sample string 6", "ClothingThumbnail": "sample string 7", "Visible": 8, "OutfitID": "sample string 9", "ClothingLevel": 10, "OrderCreateDate": "2025-06-16T23:56:47.583784-05:00" } ]
application/xml, text/xml
Sample:
<ArrayOfOrderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model_z_webAPIService.Models"> <OrderModel> <ClothingID>3</ClothingID> <ClothingLevel>10</ClothingLevel> <ClothingName>sample string 4</ClothingName> <ClothingSPrice>5</ClothingSPrice> <ClothingSize>sample string 6</ClothingSize> <ClothingThumbnail>sample string 7</ClothingThumbnail> <OrderCreateDate>2025-06-16T23:56:47.583784-05:00</OrderCreateDate> <OrderID>1</OrderID> <OutfitID>sample string 9</OutfitID> <UserID>sample string 2</UserID> <Visible>8</Visible> </OrderModel> <OrderModel> <ClothingID>3</ClothingID> <ClothingLevel>10</ClothingLevel> <ClothingName>sample string 4</ClothingName> <ClothingSPrice>5</ClothingSPrice> <ClothingSize>sample string 6</ClothingSize> <ClothingThumbnail>sample string 7</ClothingThumbnail> <OrderCreateDate>2025-06-16T23:56:47.583784-05:00</OrderCreateDate> <OrderID>1</OrderID> <OutfitID>sample string 9</OutfitID> <UserID>sample string 2</UserID> <Visible>8</Visible> </OrderModel> </ArrayOfOrderModel>