The Auction API
allows you to manipulate lots, bids in an auction. The operations you can do, through the API, are:
- Create a new lot: [
POST /lot
]; - Changes information of the lot: [
PUT /lot/:LOT_ID
]; - Starts the auction of a lot: [
POST /auction/:LOT_ID
]; - Bids on a lot: [
POST /bid/:LOT_ID
]; - List the bids of a lot: [
GET /bid/:LOT_ID
]; - Delete a lot: [
DELETE /lot/:LOT_ID
].