Questions? Feedback? powered by Olark live chat software

Escrow Offer API :: Listing auction events

Looking at auction history

Use this endpoint to get a chronological history of events for an auction.

1
2
3
curl "https://api.escrow.com/integration/2018-08-01/auction/2d2afb9f-364f-4f9f-82a5-803344d60432/event" \
    -X GET \
    -u "email-address:your-api-key"

Example Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    "events": [
        {
            "action": "offer",
            "auction_id": 123123,
            "creation_date": "2019-05-09T07:49:48.532617+00:00",
            "id": 1001,
            "offer_id": 12014,
            "no_fee_amount": 500.50,
            "note": "I really want it?",
            "transaction_id": 1464147
        },
        {
            "action": "reject",
            "auction_id": 123123,
            "creation_date": "2019-05-09T07:59:48.532617+00:00",
            "id": 1002,
            "offer_id": 12014,
            "no_fee_amount": 500.50,
            "note": "I really want it?",
            "transaction_id": 1464147
        }
    ]
}