Product Feedback
Customer can feedback after order is completed feedback by POST Method with login
https://ecom.coderorbit.com/public/api/api/order
headers:{
"Accept": "application/json",
"App-Master-Key": `${app_token}`,
"Authorization" : `Bearer ${token}`,
}
body:{
"vendor_id": 1,
"product_id": 3,
"rattings": 4.5,
"comments": "this product is very good quality",
"status": 0 // by default 0 = hide, 1 = show
}
### Result
{
"msg": "Thanks"
}