Manage Negotiations

Find your Active Offers

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/listings/negotiations

Get the details of an individual Offer

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/negotiations/[offer_id]

Decline an Offer

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/my/negotiations/[offer_id]/decline

Accept an Offer

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/my/negotiations/[offer_id]/accept

Counter an Offer

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/my/negotiations/[offer_id]/counter
-d '{
     "price": {
        "amount": "50.00",
        "currency": "USD"
      }
 	}'