Manage Feedback
To get a list of received feedback:
curl -XGET 
-H "Content-Type: application/hal+json" 
-H "Accept: application/hal+json" 
-H "Accept-Version: 3.0" 
-H "Authorization: Bearer [personal_token]"
https://api.reverb.com/api/my/feedback/receivedTo get a list of sent feedback:
curl -XGET 
-H "Content-Type: application/hal+json" 
-H "Accept: application/hal+json" 
-H "Accept-Version: 3.0" 
-H "Authorization: Bearer [personal_token]"
https://api.reverb.com/api/my/feedback/sentTo add feedback on an order as the seller:
curl -XPOST
-H "Content-Type: application/hal+json" 
-H "Accept: application/hal+json" 
-H "Accept-Version: 3.0" 
-H "Authorization: Bearer [personal_token]"
 https://api.reverb.com/api/orders/{order_id}/feedback/buyer
 -d '{
  "message": "this buyer was great!",
  "rating": 5
}'To get feedback on an order's buyer:
curl -XGET 
-H "Content-Type: application/hal+json" 
-H "Accept: application/hal+json" 
-H "Accept-Version: 3.0" 
-H "Authorization: Bearer [personal_token]"
https://api.reverb.com/api/orders/[order_id]/feedback/buyerThe rating scale is out of 5.
Updated 5 months ago
