Questions? Feedback? powered by Olark live chat software

Escrow Offer API :: Cancelling an offer

Cancelling an offer

If you need to cancel an offer you've made, you can do so by calling this endpoint.

Note

This action should be performed by the buyer

1
2
3
4
5
6
7
8
curl "https://api.escrow.com/integration/2018-08-01/auction/123123/offer/12014" \
    -X PATCH \
    -u "email-address:your-api-key" \
    -H "Content-Type: application/json" \
    -d '
{
  "action": "cancel"
}'

Example Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "auction_id": 123123,
    "by_party": {
        "customer": "lois.dee@nomina.tor",
        "display_name": "Lois D. Nominator",
        "id": 444444,
        "role": "buyer"
    },
    "date_closed": "2019-05-09T07:59:48.532617+00:00",
    "date_created": "2019-05-09T07:49:48.532617+00:00",
    "expiry_period": 1209600,
    "id": 12014,
    "no_fee_amount": "500.50",
    "note": "I really want it?",
    "status": {
        "accepted": false,
        "canceled": true,
        "rejected": false
    },
    "transaction_id": 1464147
}