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/negotiationsGet 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]/declineAccept 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]/acceptCounter 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"
      }
 	}'Updated 5 months ago
