Questions? Feedback? powered by Olark live chat software

Escrow Offer API :: Retrieving an auction token

Retrieving an auction token using the listing reference

After an Escrow Offer auction is created, if you have forgotten the associated token or urls, you can retreive it with the listing reference.

Note

Only auctions created with a listing references (a unique identifier you have provided for the auction) can be retrieved this way

1
2
3
4
curl "https://api.escrow.com/integration/2018-08-01/auction/reference/listing-xyz456/pages" \
    -X GET \
    -u "email-address:your-api-key" \
    -H "Content-Type: application/json" \

Example Response

1
2
3
4
5
{
    "make_offer_page": "https://www.escrow.com/offer?token=2d2afb9f-364f-4f9f-82a5-803344d60432&source=api",
    "offer_management_page": "https://www.escrow.com/offer-management?token=2d2afb9f-364f-4f9f-82a5-803344d60432&source=api",
    "token": "2d2afb9f-364f-4f9f-82a5-803344d60432"
}