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/received

To 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/sent

To 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/buyer

The rating scale is out of 5.