Auction Items
Last updated
An auction item represents a single listing in an auction. Each item has a status of scheduled, active, or completed. Canceled auctions are indicated by a non-null canceledAt timestamp.
Price attributes such as startPrice, reservePrice, minimumBid, currentIncrement, and highBidAmount are returned as a price object containing value (minor units), major, display, and currency fields.
The bidIncrementStrategy describes the increment type — fixed_amount, percentage, or tier — along with a value object containing the increment details.
The softClose object indicates whether soft close is enabled. When active, extendFrom specifies how many seconds before the end time a bid triggers an extension, and extendDuration specifies how many seconds the auction is extended by.
The processed attribute indicates whether the auction listing has been finalized, including assigning a winner. Listings are typically processed within a minute after the end time.
Last updated