Created
August 27, 2019 21:35
-
-
Save minmaxdata/8b3c348a9a05f90c010608d1ba4b7cdc to your computer and use it in GitHub Desktop.
Customer reviews api call get all reviews
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get http://localhost:3000/api/product/reviews?productId=10 | |
response: | |
[ | |
[ | |
{ | |
"ratings": { | |
"quality": 1, | |
"sizing": 4, | |
"style": 2, | |
"value": 1 | |
}, | |
"_id": "5d659f7bf6d5d1c253c22b54", | |
"title": "Awesome Plastic Computer", | |
"review": "Aperiam est enim quia aut. Non qui neque autem ad est qui iusto culpa sapiente. Nam dignissimos aliquam. Sunt unde deserunt odio praesentium rem in qui soluta.", | |
"customerName": "Myrna.Rau82", | |
"purchaseDate": "2019-08-26T21:58:08.581Z", | |
"productId": 10, | |
"helpful": true, | |
"recommend": false, | |
"__v": 0 | |
}, | |
{ | |
"ratings": { | |
"quality": 1, | |
"sizing": 4, | |
"style": 4, | |
"value": 5 | |
}, | |
"_id": "5d659f7bf6d5d1c253c22c1d", | |
"title": "Incredible Wooden Sausages", | |
"review": "Qui nesciunt ad deleniti eos. Et repellat aut iure id consequatur sit voluptas voluptatum. Voluptatem quia sed. Nesciunt eos quaerat omnis impedit distinctio a necessitatibus occaecati. Perspiciatis eum quo culpa sint nihil quibusdam. Repellat voluptatem fuga et est exercitationem reiciendis voluptate sit.", | |
"customerName": "Tina70", | |
"purchaseDate": "2019-08-27T13:03:23.832Z", | |
"productId": 10, | |
"helpful": true, | |
"recommend": false, | |
"__v": 0 | |
} | |
], | |
[ | |
{ | |
"_id": "5d659f7cf6d5d1c253c22cbf", | |
"productId": 10, | |
"name": "Intelligent Fresh Ball", | |
"__v": 0 | |
} | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment