magereactor / custom-reviews
MageReactor Custom Reviews
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:magento2-module
Requires
- php: ~7.3.0||~7.4.0
- magereactor/base: 2.0.0
README
MageReactor CustomReviews Module. Retrieve reviews based on product's SKU.
Module Allow
- Save Review
- Get Review By Review ID
Compatiblity
Currently, this module is compatible with Magento 2.4.x
Install
Composer
composer require magereactor/custom-reviews
Enable Module
The package comes with the MageReactor_Base module. This Base module contains necessary configurations for all MageReactor's extensions
php bin/magento module:enable MageReactor_Base php bin/magento module:enable MageReactor_CustomReviews php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f | php bin/magento setup:static-content:deploy
You may need to Flush Magento Cache after installation.
Save Review
/V2/review
Body
{ "review": { "sku": "MJ04", "status": 1, "review_detail": { "mr_review_id": null, "title": "Review Title", "detail": "Review Detail", "name": "Guest Name" } } }
Get Review
/V2/review/:reviewId
Response
{ "id": 27, "product_id": 302, "parent_id": 302, "sku": "MJ04", "status": 1, "created_at": "2022-03-06 17:57:19", "updated_at": "2022-03-06 17:57:19", "review_detail": "{\"mr_review_detail_id\":\"4\",\"mr_review_id\":\"27\",\"store_id\":\"1\",\"title\":\"Review Title\",\"detail\":\"Review Detail\",\"name\":\"Guest Name\"}" }