GET api/RecentlyViewedProducts/GetRecentlyViwedProductsByUserId?UserId={UserId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RecentViewedProducts| Name | Description | Type | Additional information |
|---|---|---|---|
| Product_Id | integer |
None. |
|
| Product | string |
None. |
|
| User_Id | integer |
None. |
|
| User | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Product_Id": 1,
"Product": "sample string 2",
"User_Id": 3,
"User": "sample string 4"
},
{
"$ref": "1"
}
]
application/octet-stream
Sample:
[{"$id":"1","Product_Id":1,"Product":"sample string 2","User_Id":3,"User":"sample string 4"},{"$ref":"1"}]