GET api/ProductReview/GetProductsRatingByCustomerId?CustomerId={CustomerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CustomerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ProductReview
NameDescriptionTypeAdditional information
Id

integer

None.

Product_Id

integer

None.

Product

string

None.

Customer_Id

integer

None.

Customer

string

None.

Status

string

None.

Description

string

None.

CreatedDate

string

None.

UpdatedDate

string

None.

Rating

integer

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "Product_Id": 2,
    "Product": "sample string 3",
    "Customer_Id": 4,
    "Customer": "sample string 5",
    "Status": "sample string 6",
    "Description": "sample string 7",
    "CreatedDate": "sample string 8",
    "UpdatedDate": "sample string 9",
    "Rating": 10,
    "CreatedBy": 11,
    "UpdatedBy": 12
  },
  {
    "$ref": "1"
  }
]

application/octet-stream

Sample:
[{"$id":"1","Id":1,"Product_Id":2,"Product":"sample string 3","Customer_Id":4,"Customer":"sample string 5","Status":"sample string 6","Description":"sample string 7","CreatedDate":"sample string 8","UpdatedDate":"sample string 9","Rating":10,"CreatedBy":11,"UpdatedBy":12},{"$ref":"1"}]