Questions? Feedback? powered by Olark live chat software

Escrow Offer API :: Listing offers on an auction

Listing offers on an auction

This API call returns a list of offers made on an auction the authenticated user is involved in, i.e., a seller will see a list of all offers made, but a buyer then you will only see the offers they have made. Escrow Offer API has 2 endpoints for listing offers on an auction: using the token or the auction id.

Listing offers using token

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

Listing offers using auction id

1
2
3
curl "https://api.escrow.com/integration/2018-08-01/auction/123123/offer" \
    -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
25
{
    "offers": [
        {
            "auction_id": 123123,
            "by_party": {
                "customer": "lois.dee@nomina.tor@.",
                "display_name": "Lois Dee Nominator",
                "id": 444444,
                "role": "buyer"
            },
            "date_closed": null,
            "date_created": "2019-05-09T07:49:48.532617+00:00",
            "expiry_period": 1209600,
            "id": 12014,
            "no_fee_amount": "500.50",
            "note": "4",
            "status": {
                "accepted": false,
                "canceled": false,
                "rejected": false
            },
            "transaction_id": 1464147
        }
    ]
}